diff --git a/Client/Input/EnumGlKeys.cs b/Client/Input/EnumGlKeys.cs index e99c8458..80d8f0d5 100644 --- a/Client/Input/EnumGlKeys.cs +++ b/Client/Input/EnumGlKeys.cs @@ -1,3 +1,4 @@ +using System; using OpenTK.Windowing.GraphicsLibraryFramework; namespace Vintagestory.API.Client @@ -53,7 +54,7 @@ public static string GetKeyName(GlKeys key) } return keyName.ToUpperInvariant(); } - + /// /// Returns the printable character for a key. Does return null on none printable keys like /// @@ -61,8 +62,15 @@ public static string GetKeyName(GlKeys key) /// public static string GetPrintableChar(int key) { - var keycode = KeyConverter.GlKeysToNew[key]; - return GLFW.GetKeyName((Keys)keycode, 0); + try + { + var keycode = KeyConverter.GlKeysToNew[key]; + return GLFW.GetKeyName((Keys)keycode, 0); + } + catch (IndexOutOfRangeException) + { + return string.Empty; + } } } @@ -210,11 +218,11 @@ static KeyConverter() } } } - + /// /// Internally the game uses OpenTK and their Keys are by default mapped to US QWERTY Keyboard layout which the GlKeys also do. /// Upon typing text in a Text input field it will produce the correct characters according to your keyboard layout. - /// + /// /// If you need to get the character for the current Keyboard layout use /// public enum GlKeys @@ -366,4 +374,4 @@ public enum GlKeys // We reserve 240-248 for mouse buttons - see also KeyCombination.MouseStart } -} \ No newline at end of file +} diff --git a/Client/Texture/ITextureSource.cs b/Client/Texture/ITextureSource.cs index 4f60d2e0..93ff5ad2 100644 --- a/Client/Texture/ITextureSource.cs +++ b/Client/Texture/ITextureSource.cs @@ -56,10 +56,16 @@ protected TextureAtlasPosition getOrCreateTexPos(AssetLocation texturePath) if (texAsset != null) { targetAtlas.GetOrInsertTexture(texturePath, out _, out texpos, () => texAsset.ToBitmap(capi)); + if (texpos == null) + { + capi.World.Logger.Error("{0}, require texture {1} which exists, but unable to upload it or allocate space", sourceForErrorLogging, texturePath); + texpos = targetAtlas.UnknownTexturePosition; + } } else { - capi.World.Logger.Warning("{0}, require texture {1}, but no such texture found.", sourceForErrorLogging, texturePath); + capi.World.Logger.Error("{0}, require texture {1}, but no such texture found.", sourceForErrorLogging, texturePath); + texpos = targetAtlas.UnknownTexturePosition; } } diff --git a/Client/UI/CairoFont.cs b/Client/UI/CairoFont.cs index a11f9fdb..aaadaccc 100644 --- a/Client/UI/CairoFont.cs +++ b/Client/UI/CairoFont.cs @@ -376,6 +376,21 @@ public static CairoFont WhiteSmallishText() }; } + /// + /// Creates a white text for smallish dialogs, using the specified base font + /// + /// + /// + public static CairoFont WhiteSmallishText(string baseFont) + { + return new CairoFont() + { + Color = (double[])GuiStyle.DialogDefaultTextColor.Clone(), + Fontname = baseFont, + UnscaledFontsize = GuiStyle.SmallishFontSize + }; + } + /// /// Creates a white text for small dialogs. /// diff --git a/Common/API/IEventAPI.cs b/Common/API/IEventAPI.cs index caccf182..b1e954d7 100644 --- a/Common/API/IEventAPI.cs +++ b/Common/API/IEventAPI.cs @@ -197,6 +197,7 @@ public interface IEventAPI /// /// /// + /// /// listenerId long RegisterCallback(Action OnTimePassed, int millisecondDelay, bool permittedWhilePaused); diff --git a/Common/Collectible/Collectible.cs b/Common/Collectible/Collectible.cs index edd41de2..b815e48b 100644 --- a/Common/Collectible/Collectible.cs +++ b/Common/Collectible/Collectible.cs @@ -1671,7 +1671,7 @@ public virtual void GetHeldItemInfo(ItemSlot inSlot, StringBuilder dsc, IWorldAc - if (GrindingProps != null) + if (GrindingProps?.GroundStack?.ResolvedItemstack != null) { dsc.AppendLine(Lang.Get("When ground: Turns into {0}x {1}", GrindingProps.GroundStack.ResolvedItemstack.StackSize, GrindingProps.GroundStack.ResolvedItemstack.GetName())); } diff --git a/Common/Entity/Entity.cs b/Common/Entity/Entity.cs index 8f0d356c..72c827d9 100644 --- a/Common/Entity/Entity.cs +++ b/Common/Entity/Entity.cs @@ -1467,10 +1467,14 @@ public virtual void UpdateDebugAttributes() { if (World.Side != EnumAppSide.Client) return; - DebugAttributes.SetString("Entity Id", ""+EntityId); + DebugAttributes.SetString("Entity Id", "" + EntityId); DebugAttributes.SetString("Yaw", string.Format("{0:0.##}", Pos.Yaw)); + if (AnimManager != null) UpdateAnimationDebugAttributes(); // for EntityItem, AnimManager will be null + } + protected virtual void UpdateAnimationDebugAttributes() + { string anims = ""; int i = 0; foreach (string anim in AnimManager.ActiveAnimationsByAnimCode.Keys) diff --git a/Common/Entity/EntityAgent.cs b/Common/Entity/EntityAgent.cs index 0d93a7f8..d4cd76c2 100644 --- a/Common/Entity/EntityAgent.cs +++ b/Common/Entity/EntityAgent.cs @@ -603,13 +603,6 @@ protected virtual void HandleHandAnimations(float dt) } - public virtual void StopHandAnims() - { - - } - - - /// /// updated by GetWalkSpeedMultiplier() /// diff --git a/Common/Entity/EntityItem.cs b/Common/Entity/EntityItem.cs index 14b04460..3a81728f 100644 --- a/Common/Entity/EntityItem.cs +++ b/Common/Entity/EntityItem.cs @@ -146,7 +146,19 @@ public override void Initialize(EntityProperties properties, ICoreAPI api, long public override void OnGameTick(float dt) { - if (World.Side == EnumAppSide.Client) base.OnGameTick(dt); + if (World.Side == EnumAppSide.Client) + { + try + { + base.OnGameTick(dt); + } + catch (Exception e) + { + if (World == null) throw new NullReferenceException("'World' was null for EntityItem; entity is " + (alive ? "alive" : "post-lifetime")); + Api.Logger.Error("Erroring EntityItem tick: please report this as a bug!"); + Api.Logger.Error(e); + } + } else { // simplified server tick diff --git a/Common/Entity/EntityPlayer.cs b/Common/Entity/EntityPlayer.cs index 0b97f7fe..6c1c6199 100644 --- a/Common/Entity/EntityPlayer.cs +++ b/Common/Entity/EntityPlayer.cs @@ -409,6 +409,7 @@ public override double GetWalkSpeedMultiplier(double groundDragFactor = 0.3) public void OnSelfBeforeRender(float dt) { updateEyeHeight(dt); + HandleSeraphHandAnimations(dt); } @@ -762,7 +763,7 @@ void updateLocalEyePosImmersiveFpMode() float strongWindAccum = 0; bool haveHandUseOrHit; - protected override void HandleHandAnimations(float dt) + public void HandleSeraphHandAnimations(float dt) { protectEyesFromWind(dt); @@ -780,8 +781,7 @@ protected override void HandleHandAnimations(float dt) bool wasUseStack = plrAnimMngr.IsHeldUseActive(); bool nowHitStack = interact == EnumHandInteract.HeldItemAttack || servercontrols.LeftMouseDown; - bool wasHitStack = plrAnimMngr.IsHeldHitActive(); - + bool wasHitStack = plrAnimMngr.IsHeldHitActive(1f); string nowHeldRightUseAnim = rightstack?.Collectible.GetHeldTpUseAnimation(RightHandItemSlot, this); string nowHeldRightHitAnim = rightstack?.Collectible.GetHeldTpHitAnimation(RightHandItemSlot, this); @@ -850,10 +850,23 @@ protected override void HandleHandAnimations(float dt) bool authorative = plrAnimMngr.IsHeldHitAuthorative(); plrAnimMngr.StopHeldAttackAnim(); - if (!authorative && nowHitStack) + if (plrAnimMngr.lastRunningHeldHitAnimation != null && authorative) + { + if (servercontrols.LeftMouseDown) + { + plrAnimMngr.ResetAnimation(nowHeldRightHitAnim); + controls.HandUse = EnumHandInteract.None; + plrAnimMngr.StartHeldHitAnim(nowHeldRightHitAnim); + haveHandUseOrHit = true; + } + + } else { - plrAnimMngr.StartHeldHitAnim(nowHeldRightHitAnim); - haveHandUseOrHit = true; + if (!authorative && nowHitStack) + { + plrAnimMngr.StartHeldHitAnim(nowHeldRightHitAnim); + haveHandUseOrHit = true; + } } } @@ -990,7 +1003,7 @@ protected bool canPlayEdgeSitAnim() Block frontBelowBlock = bl.GetBlock(frontBelowPos); var frontBellowCollBoxes = frontBelowBlock.GetCollisionBoxes(bl, frontBelowPos); - if (frontBellowCollBoxes == null) return true; + if (frontBellowCollBoxes == null || frontBellowCollBoxes.Length == 0) return true; double sitHeight = pos.Y - (frontBelowPos.Y + frontBellowCollBoxes.Max(box => box.Y2)); diff --git a/Common/Entity/PlayerAnimationManager.cs b/Common/Entity/PlayerAnimationManager.cs index 977ae350..1f9ffaa8 100644 --- a/Common/Entity/PlayerAnimationManager.cs +++ b/Common/Entity/PlayerAnimationManager.cs @@ -114,16 +114,16 @@ public override bool IsAnimationActive(params string[] anims) return base.IsAnimationActive(anims); } - public bool IsAnimationActiveOrRunning(string anim) + public bool IsAnimationActiveOrRunning(string anim, float untilProgress = 0.95f) { if (anim == null || Animator == null) return false; - return IsAnimationMostlyRunning(anim) || IsAnimationMostlyRunning(anim + fpEnding); + return IsAnimationMostlyRunning(anim, untilProgress) || IsAnimationMostlyRunning(anim + fpEnding, untilProgress); } - protected bool IsAnimationMostlyRunning(string anim) + protected bool IsAnimationMostlyRunning(string anim, float untilProgress = 0.95f) { var ranim = Animator.GetAnimationState(anim); - return ranim != null && ranim.Running && ranim.AnimProgress < 0.95; + return ranim != null && ranim.Running && ranim.AnimProgress < untilProgress && ranim.Active /* ranim.Active check makes a short left mouse click with axe in hands look much better */; } protected override void onReceivedServerAnimation(AnimationMetaData animmetadata) @@ -271,9 +271,9 @@ public bool IsHeldUseActive() return lastActiveHeldUseAnimation != null && IsAnimationActiveOrRunning(lastActiveHeldUseAnimation); } - public bool IsHeldHitActive() + public bool IsHeldHitActive(float untilProgress = 0.95f) { - return lastActiveHeldHitAnimation != null && IsAnimationActiveOrRunning(lastActiveHeldHitAnimation); + return lastActiveHeldHitAnimation != null && IsAnimationActiveOrRunning(lastActiveHeldHitAnimation, untilProgress); } public bool IsLeftHeldActive() diff --git a/Common/Model/Animation/AnimationManager.cs b/Common/Model/Animation/AnimationManager.cs index e5658f0c..5fc1bca9 100644 --- a/Common/Model/Animation/AnimationManager.cs +++ b/Common/Model/Animation/AnimationManager.cs @@ -79,8 +79,9 @@ public virtual void ResetAnimation(string animCode) var state = Animator?.GetAnimationState(animCode); if (state != null) { - state.EasingFactor = 0; + //state.EasingFactor = 0; state.CurrentFrame = 0; + state.Iterations = 0; } } diff --git a/Common/Model/Animation/RunningAnimation.cs b/Common/Model/Animation/RunningAnimation.cs index 2ed39145..48e5a710 100644 --- a/Common/Model/Animation/RunningAnimation.cs +++ b/Common/Model/Animation/RunningAnimation.cs @@ -29,7 +29,7 @@ public class RunningAnimation public ShapeElementWeights[] ElementWeights; - public float AnimProgress => CurrentFrame / Animation.QuantityFrames; + public float AnimProgress => CurrentFrame / (Animation.QuantityFrames-1); public void LoadWeights(ShapeElement[] rootElements) { diff --git a/Config/GameVersion.cs b/Config/GameVersion.cs index 3402887a..427e6838 100644 --- a/Config/GameVersion.cs +++ b/Config/GameVersion.cs @@ -31,17 +31,17 @@ public static class GameVersion /// /// Assembly Info Version number in the format: major.minor.revision /// - public const string OverallVersion = "1.19.4"; + public const string OverallVersion = "1.19.5"; /// /// Whether this is a stable or unstable version /// - public const EnumGameBranch Branch = EnumGameBranch.Stable; + public const EnumGameBranch Branch = EnumGameBranch.Unstable; /// /// Version number in the format: major.minor.revision[appendix] /// - public const string ShortGameVersion = OverallVersion + ""; + public const string ShortGameVersion = OverallVersion + "-rc.1"; public static EnumReleaseType ReleaseType => GetReleaseType(ShortGameVersion); diff --git a/Util/StringUtil.cs b/Util/StringUtil.cs index f3670f5e..390e8d16 100644 --- a/Util/StringUtil.cs +++ b/Util/StringUtil.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Concurrent; +using System.Diagnostics; using System.Globalization; +using System.Numerics; using System.Text; using Vintagestory.API.Config; @@ -8,6 +10,40 @@ namespace Vintagestory.API.Util { public static class StringUtil { + // Use this if and only if 'Denial of Service' attacks are not a concern (i.e. never used for free-form user input), + // or are otherwise mitigated + public static unsafe int GetNonRandomizedHashCode(this string str) + { + fixed (char* src = str) + { + Debug.Assert(src[str.Length] == '\0', "src[this.Length] == '\\0'"); + Debug.Assert(((int)src) % 4 == 0, "Managed string should start at 4 bytes boundary"); + + uint hash1 = (5381 << 16) + 5381; + uint hash2 = hash1; + + uint* ptr = (uint*)src; + int length = str.Length; + + while (length > 2) + { + length -= 4; + // Where length is 4n-1 (e.g. 3,7,11,15,19) this additionally consumes the null terminator + hash1 = (BitOperations.RotateLeft(hash1, 5) + hash1) ^ ptr[0]; + hash2 = (BitOperations.RotateLeft(hash2, 5) + hash2) ^ ptr[1]; + ptr += 2; + } + + if (length > 0) + { + // Where length is 4n-3 (e.g. 1,5,9,13,17) this additionally consumes the null terminator + hash2 = (BitOperations.RotateLeft(hash2, 5) + hash2) ^ ptr[0]; + } + + return (int)(hash1 + (hash2 * 1566083941)); + } + } + /// /// IMPORTANT! This method should be used for every IndexOf operation in our code (except possibly in localised output to the user). This is important in order to avoid any /// culture-specific different results even when indexing GLSL shader code or other code strings, etc., or other strings in English, when the current culture is a different language diff --git a/api/.manifest b/api/.manifest index a3908b41..9d08f409 100644 --- a/api/.manifest +++ b/api/.manifest @@ -605,6 +605,7 @@ "Vintagestory.API.Client.CairoFont.WhiteMediumText": "Vintagestory.API.Client.CairoFont.yml", "Vintagestory.API.Client.CairoFont.WhiteSmallText": "Vintagestory.API.Client.CairoFont.yml", "Vintagestory.API.Client.CairoFont.WhiteSmallishText": "Vintagestory.API.Client.CairoFont.yml", + "Vintagestory.API.Client.CairoFont.WhiteSmallishText(System.String)": "Vintagestory.API.Client.CairoFont.yml", "Vintagestory.API.Client.CairoFont.WithColor(System.Double[])": "Vintagestory.API.Client.CairoFont.yml", "Vintagestory.API.Client.CairoFont.WithFont(System.String)": "Vintagestory.API.Client.CairoFont.yml", "Vintagestory.API.Client.CairoFont.WithFontSize(System.Single)": "Vintagestory.API.Client.CairoFont.yml", @@ -5693,6 +5694,7 @@ "Vintagestory.API.Common.Entities.Entity.ToBytes(System.IO.BinaryWriter,System.Boolean)": "Vintagestory.API.Common.Entities.Entity.yml", "Vintagestory.API.Common.Entities.Entity.TriggerOnInitialized": "Vintagestory.API.Common.Entities.Entity.yml", "Vintagestory.API.Common.Entities.Entity.TryGiveItemStack(Vintagestory.API.Common.ItemStack)": "Vintagestory.API.Common.Entities.Entity.yml", + "Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes": "Vintagestory.API.Common.Entities.Entity.yml", "Vintagestory.API.Common.Entities.Entity.UpdateDebugAttributes": "Vintagestory.API.Common.Entities.Entity.yml", "Vintagestory.API.Common.Entities.Entity.WatchedAttributes": "Vintagestory.API.Common.Entities.Entity.yml", "Vintagestory.API.Common.Entities.Entity.WillExport(Vintagestory.API.MathTools.BlockPos)": "Vintagestory.API.Common.Entities.Entity.yml", @@ -6024,7 +6026,6 @@ "Vintagestory.API.Common.EntityAgent.ShouldReceiveSaturation(System.Single,Vintagestory.API.Common.EnumFoodCategory,System.Single,System.Single)": "Vintagestory.API.Common.EntityAgent.yml", "Vintagestory.API.Common.EntityAgent.SpawnFloatingSediment(Vintagestory.API.Client.IAsyncParticleManager)": "Vintagestory.API.Common.EntityAgent.yml", "Vintagestory.API.Common.EntityAgent.SpawnSnowStepParticles": "Vintagestory.API.Common.EntityAgent.yml", - "Vintagestory.API.Common.EntityAgent.StopHandAnims": "Vintagestory.API.Common.EntityAgent.yml", "Vintagestory.API.Common.EntityAgent.ToBytes(System.IO.BinaryWriter,System.Boolean)": "Vintagestory.API.Common.EntityAgent.yml", "Vintagestory.API.Common.EntityAgent.TryGiveItemStack(Vintagestory.API.Common.ItemStack)": "Vintagestory.API.Common.EntityAgent.yml", "Vintagestory.API.Common.EntityAgent.TryMount(Vintagestory.API.Common.IMountable)": "Vintagestory.API.Common.EntityAgent.yml", @@ -6234,7 +6235,7 @@ "Vintagestory.API.Common.EntityPlayer.GetName": "Vintagestory.API.Common.EntityPlayer.yml", "Vintagestory.API.Common.EntityPlayer.GetNearestBlockSoundSource(Vintagestory.API.MathTools.BlockPos,System.Double,System.Int32,System.Boolean)": "Vintagestory.API.Common.EntityPlayer.yml", "Vintagestory.API.Common.EntityPlayer.GetWalkSpeedMultiplier(System.Double)": "Vintagestory.API.Common.EntityPlayer.yml", - "Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(System.Single)": "Vintagestory.API.Common.EntityPlayer.yml", + "Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(System.Single)": "Vintagestory.API.Common.EntityPlayer.yml", "Vintagestory.API.Common.EntityPlayer.HeadYawLimits": "Vintagestory.API.Common.EntityPlayer.yml", "Vintagestory.API.Common.EntityPlayer.Ignite": "Vintagestory.API.Common.EntityPlayer.yml", "Vintagestory.API.Common.EntityPlayer.Initialize(Vintagestory.API.Common.Entities.EntityProperties,Vintagestory.API.Common.ICoreAPI,System.Int64)": "Vintagestory.API.Common.EntityPlayer.yml", @@ -8560,9 +8561,9 @@ "Vintagestory.API.Common.PlayerAnimationManager.HeldUseAnimChanged(System.String)": "Vintagestory.API.Common.PlayerAnimationManager.yml", "Vintagestory.API.Common.PlayerAnimationManager.Init(Vintagestory.API.Common.ICoreAPI,Vintagestory.API.Common.Entities.Entity)": "Vintagestory.API.Common.PlayerAnimationManager.yml", "Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActive(System.String[])": "Vintagestory.API.Common.PlayerAnimationManager.yml", - "Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String)": "Vintagestory.API.Common.PlayerAnimationManager.yml", - "Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String)": "Vintagestory.API.Common.PlayerAnimationManager.yml", - "Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive": "Vintagestory.API.Common.PlayerAnimationManager.yml", + "Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String,System.Single)": "Vintagestory.API.Common.PlayerAnimationManager.yml", + "Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String,System.Single)": "Vintagestory.API.Common.PlayerAnimationManager.yml", + "Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(System.Single)": "Vintagestory.API.Common.PlayerAnimationManager.yml", "Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitAuthorative": "Vintagestory.API.Common.PlayerAnimationManager.yml", "Vintagestory.API.Common.PlayerAnimationManager.IsHeldUseActive": "Vintagestory.API.Common.PlayerAnimationManager.yml", "Vintagestory.API.Common.PlayerAnimationManager.IsLeftHeldActive": "Vintagestory.API.Common.PlayerAnimationManager.yml", @@ -12355,6 +12356,7 @@ "Vintagestory.API.Util.StringUtil.EndsWithOrdinal(System.String,System.String)": "Vintagestory.API.Util.StringUtil.yml", "Vintagestory.API.Util.StringUtil.EqualsFast(System.String,System.String)": "Vintagestory.API.Util.StringUtil.yml", "Vintagestory.API.Util.StringUtil.FastStartsWith(System.String,System.String,System.Int32)": "Vintagestory.API.Util.StringUtil.yml", + "Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(System.String)": "Vintagestory.API.Util.StringUtil.yml", "Vintagestory.API.Util.StringUtil.IndexOfOrdinal(System.String,System.String)": "Vintagestory.API.Util.StringUtil.yml", "Vintagestory.API.Util.StringUtil.RemoveDiacritics(System.String)": "Vintagestory.API.Util.StringUtil.yml", "Vintagestory.API.Util.StringUtil.RemoveFileEnding(System.String)": "Vintagestory.API.Util.StringUtil.yml", diff --git a/api/CompactExifLib.ExifByteOrder.yml b/api/CompactExifLib.ExifByteOrder.yml index d20129fe..de29f70f 100644 --- a/api/CompactExifLib.ExifByteOrder.yml +++ b/api/CompactExifLib.ExifByteOrder.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 54b6b0eb..c6c4dec0 100644 --- a/api/CompactExifLib.ExifData.yml +++ b/api/CompactExifLib.ExifData.yml @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 36ca3368..1e622e6c 100644 --- a/api/CompactExifLib.ExifDateFormat.yml +++ b/api/CompactExifLib.ExifDateFormat.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 efaba413..07116045 100644 --- a/api/CompactExifLib.ExifErrCode.yml +++ b/api/CompactExifLib.ExifErrCode.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ea565fd3..b556c598 100644 --- a/api/CompactExifLib.ExifException.yml +++ b/api/CompactExifLib.ExifException.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6b39612f..f204f645 100644 --- a/api/CompactExifLib.ExifIfd.yml +++ b/api/CompactExifLib.ExifIfd.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cf8c9b0a..5d345056 100644 --- a/api/CompactExifLib.ExifLoadOptions.yml +++ b/api/CompactExifLib.ExifLoadOptions.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b03dc454..fac38894 100644 --- a/api/CompactExifLib.ExifRational.yml +++ b/api/CompactExifLib.ExifRational.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 93dd3d39..e036df68 100644 --- a/api/CompactExifLib.ExifSaveOptions.yml +++ b/api/CompactExifLib.ExifSaveOptions.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 15d55d8b..687ef25f 100644 --- a/api/CompactExifLib.ExifTag.yml +++ b/api/CompactExifLib.ExifTag.yml @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 230fadeb..16ec674b 100644 --- a/api/CompactExifLib.ExifTagId.yml +++ b/api/CompactExifLib.ExifTagId.yml @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2bfd22ee..4ea77447 100644 --- a/api/CompactExifLib.ExifTagType.yml +++ b/api/CompactExifLib.ExifTagType.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a64ab4a2..9e0d1fa2 100644 --- a/api/CompactExifLib.GeoCoordinate.yml +++ b/api/CompactExifLib.GeoCoordinate.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 45d1e3ac..ce968871 100644 --- a/api/CompactExifLib.ImageFileBlock.yml +++ b/api/CompactExifLib.ImageFileBlock.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6f70398b..684655ec 100644 --- a/api/CompactExifLib.ImageType.yml +++ b/api/CompactExifLib.ImageType.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 eacaeb13..d2945da3 100644 --- a/api/CompactExifLib.StrCoding.yml +++ b/api/CompactExifLib.StrCoding.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a6b03522..5f67046a 100644 --- a/api/CompactExifLib.StrCodingFormat.yml +++ b/api/CompactExifLib.StrCodingFormat.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 208af4c2..aa8ff1dd 100644 --- a/api/ProperVersion.SemVer.yml +++ b/api/ProperVersion.SemVer.yml @@ -40,8 +40,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ec8cd5e4..823bd4ca 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a5d45b11..179372f8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cb45908d..340d8f62 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3dc04237..3d035610 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 050a7484..478ea3c4 100644 --- a/api/Vintagestory.API.Client.CairoFont.yml +++ b/api/Vintagestory.API.Client.CairoFont.yml @@ -29,6 +29,7 @@ items: - Vintagestory.API.Client.CairoFont.WhiteMediumText - Vintagestory.API.Client.CairoFont.WhiteSmallText - Vintagestory.API.Client.CairoFont.WhiteSmallishText + - Vintagestory.API.Client.CairoFont.WhiteSmallishText(System.String) - Vintagestory.API.Client.CairoFont.WithColor(System.Double[]) - Vintagestory.API.Client.CairoFont.WithFont(System.String) - Vintagestory.API.Client.CairoFont.WithFontSize(System.Single) @@ -48,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CairoFont path: Client/UI/CairoFont.cs startLine: 9 @@ -94,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FontMeasuringContext path: Client/UI/CairoFont.cs startLine: 15 @@ -123,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RenderTwice path: Client/UI/CairoFont.cs startLine: 20 @@ -152,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LineHeightMultiplier path: Client/UI/CairoFont.cs startLine: 22 @@ -179,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Slant path: Client/UI/CairoFont.cs startLine: 26 @@ -206,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Orientation path: Client/UI/CairoFont.cs startLine: 28 @@ -233,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 39 @@ -264,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 47 @@ -299,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 62 @@ -337,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithLineHeightMultiplier path: Client/UI/CairoFont.cs startLine: 68 @@ -371,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithStroke path: Client/UI/CairoFont.cs startLine: 74 @@ -407,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 88 @@ -451,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AutoFontSize path: Client/UI/CairoFont.cs startLine: 103 @@ -492,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AutoBoxSize path: Client/UI/CairoFont.cs startLine: 120 @@ -533,8 +534,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithColor path: Client/UI/CairoFont.cs startLine: 172 @@ -570,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithWeight path: Client/UI/CairoFont.cs startLine: 182 @@ -604,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithRenderTwice path: Client/UI/CairoFont.cs startLine: 191 @@ -634,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithSlant path: Client/UI/CairoFont.cs startLine: 197 @@ -665,8 +666,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithFont path: Client/UI/CairoFont.cs startLine: 203 @@ -699,8 +700,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SetupContext path: Client/UI/CairoFont.cs startLine: 213 @@ -731,8 +732,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetFontExtents path: Client/UI/CairoFont.cs startLine: 240 @@ -762,8 +763,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetTextExtents path: Client/UI/CairoFont.cs startLine: 251 @@ -800,8 +801,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Clone path: Client/UI/CairoFont.cs startLine: 261 @@ -831,8 +832,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithFontSize path: Client/UI/CairoFont.cs startLine: 276 @@ -868,8 +869,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ButtonText path: Client/UI/CairoFont.cs startLine: 286 @@ -899,8 +900,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ButtonPressedText path: Client/UI/CairoFont.cs startLine: 302 @@ -930,8 +931,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WithOrientation path: Client/UI/CairoFont.cs startLine: 314 @@ -961,8 +962,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TextInput path: Client/UI/CairoFont.cs startLine: 324 @@ -992,8 +993,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SmallTextInput path: Client/UI/CairoFont.cs startLine: 338 @@ -1023,8 +1024,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WhiteMediumText path: Client/UI/CairoFont.cs startLine: 354 @@ -1054,8 +1055,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WhiteSmallishText path: Client/UI/CairoFont.cs startLine: 368 @@ -1071,6 +1072,44 @@ items: description: The white text for small dialogs. content.vb: Public Shared Function WhiteSmallishText() As CairoFont overload: Vintagestory.API.Client.CairoFont.WhiteSmallishText* +- uid: Vintagestory.API.Client.CairoFont.WhiteSmallishText(System.String) + commentId: M:Vintagestory.API.Client.CairoFont.WhiteSmallishText(System.String) + id: WhiteSmallishText(System.String) + parent: Vintagestory.API.Client.CairoFont + langs: + - csharp + - vb + name: WhiteSmallishText(string) + nameWithType: CairoFont.WhiteSmallishText(string) + fullName: Vintagestory.API.Client.CairoFont.WhiteSmallishText(string) + type: Method + source: + remote: + path: VintagestoryApi/Client/UI/CairoFont.cs + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git + id: WhiteSmallishText + path: Client/UI/CairoFont.cs + startLine: 383 + assemblies: + - VintagestoryAPI + namespace: Vintagestory.API.Client + summary: Creates a white text for smallish dialogs, using the specified base font + example: [] + syntax: + content: public static CairoFont WhiteSmallishText(string baseFont) + parameters: + - id: baseFont + type: System.String + description: '' + return: + type: Vintagestory.API.Client.CairoFont + description: '' + content.vb: Public Shared Function WhiteSmallishText(baseFont As String) As CairoFont + overload: Vintagestory.API.Client.CairoFont.WhiteSmallishText* + nameWithType.vb: CairoFont.WhiteSmallishText(String) + fullName.vb: Vintagestory.API.Client.CairoFont.WhiteSmallishText(String) + name.vb: WhiteSmallishText(String) - uid: Vintagestory.API.Client.CairoFont.WhiteSmallText commentId: M:Vintagestory.API.Client.CairoFont.WhiteSmallText id: WhiteSmallText @@ -1085,11 +1124,11 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WhiteSmallText path: Client/UI/CairoFont.cs - startLine: 382 + startLine: 397 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1116,11 +1155,11 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WhiteDetailText path: Client/UI/CairoFont.cs - startLine: 397 + startLine: 412 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1147,11 +1186,11 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/CairoFont.cs - startLine: 408 + startLine: 423 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client diff --git a/api/Vintagestory.API.Client.CanClickSlotDelegate.yml b/api/Vintagestory.API.Client.CanClickSlotDelegate.yml index 8c85538b..e1ecb309 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d3b7696c..32b411ce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b8ebb536..1ec519b2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 878981a1..03dc746a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 96cf6437..00385363 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 53f2d3b5..2023df69 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b889dc61..0365a495 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 01dd964f..b7a5c1cc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c44fc0af..7009a69c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6b8a4c5f..788cf356 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 96b0370c..e302e97f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9cebdc56..2203dd1f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2ab11f00..559bdcb1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 28d06c44..ebfea87f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 53a1d73b..4d12367a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dcbbd050..afae3802 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 49658b55..f6b96795 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5d46ca30..598683e9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bf40cc51..31eaf405 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 35a79026..03ec7d6a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e52c51f0..c799ca63 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 279edc7b..b53ecccd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d980e7d8..465b5465 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 984b9ed4..16a81af1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 55c46fc6..a29016fe 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 23b4af96..c24ba978 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 185c365b..363080c6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e484b8ef..45d9ca17 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 48d05ecc..a35596a7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 758530e0..00d1e136 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7218c6f1..9e24c0f3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 13d6bd26..7f2ee0f1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c0b13488..28e87250 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 be5e38a7..af074424 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c4bfbba0..23a6e601 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 30d94f11..ba3bf7db 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8ff8da7d..d8349476 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5f492a76..a69784d9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 926f829e..45f64aa3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5250e259..6b597a1e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b7772e8a..efae481e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bdcb492c..cb0fa01f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e7435db3..251a17a6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 13bd5b86..ffca9dd7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 96421b8f..8e41dd21 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ae035b7a..c8cd2ff0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 40c8744c..dd7a7c3f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 08c3f8a5..9a4b0535 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 459fc3d5..57b21a83 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8e696f04..fbf39240 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 216a78d1..f64638ce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 04743b29..cef04c43 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5d5d3411..276d1f1d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e6bf6af6..1ac7535b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9c3c39ee..6222cd30 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7d5d2cff..e3bfcd76 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 01b3d3ad..697e3caa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8c2f934c..937c3245 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 176a453d..e038590d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6b121379..9c4c2d76 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 824ae1e8..1c343b0c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 715cd7d1..f85a16a1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b5422860..c32b3b13 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1f8a1736..e1257c88 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0881a9f1..1651f352 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 321ec747..0d769a07 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8cbfd330..bf5218ae 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 846313fc..e4260637 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3ba077dc..2f1c4fff 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a58a9dea..d4d4008e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bf2c7c4c..b6e5fc1b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9f6acadd..29b98300 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 38db10a5..0afe0bfd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 56857346..99cece50 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8f89665a..8e239c7d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3949d3c8..7f17f112 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 13b95b06..def4908e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d8744366..400d36c8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a841ce71..abe1f2f4 100644 --- a/api/Vintagestory.API.Client.GlKeyNames.yml +++ b/api/Vintagestory.API.Client.GlKeyNames.yml @@ -18,11 +18,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GlKeyNames path: Client/Input/EnumGlKeys.cs - startLine: 4 + startLine: 5 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -53,11 +53,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToString path: Client/Input/EnumGlKeys.cs - startLine: 11 + startLine: 12 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -88,11 +88,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetKeyName path: Client/Input/EnumGlKeys.cs - startLine: 46 + startLine: 47 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -126,11 +126,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetPrintableChar path: Client/Input/EnumGlKeys.cs - startLine: 61 + startLine: 62 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client diff --git a/api/Vintagestory.API.Client.GlKeys.yml b/api/Vintagestory.API.Client.GlKeys.yml index f39a56d7..9582f3bf 100644 --- a/api/Vintagestory.API.Client.GlKeys.yml +++ b/api/Vintagestory.API.Client.GlKeys.yml @@ -159,11 +159,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GlKeys path: Client/Input/EnumGlKeys.cs - startLine: 219 + startLine: 227 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -192,11 +192,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Unknown path: Client/Input/EnumGlKeys.cs - startLine: 221 + startLine: 229 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -218,11 +218,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LShift path: Client/Input/EnumGlKeys.cs - startLine: 222 + startLine: 230 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -244,11 +244,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShiftLeft path: Client/Input/EnumGlKeys.cs - startLine: 223 + startLine: 231 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -270,11 +270,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RShift path: Client/Input/EnumGlKeys.cs - startLine: 224 + startLine: 232 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -296,11 +296,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShiftRight path: Client/Input/EnumGlKeys.cs - startLine: 225 + startLine: 233 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -322,11 +322,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LControl path: Client/Input/EnumGlKeys.cs - startLine: 226 + startLine: 234 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -348,11 +348,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ControlLeft path: Client/Input/EnumGlKeys.cs - startLine: 227 + startLine: 235 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -374,11 +374,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RControl path: Client/Input/EnumGlKeys.cs - startLine: 228 + startLine: 236 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -400,11 +400,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ControlRight path: Client/Input/EnumGlKeys.cs - startLine: 229 + startLine: 237 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -426,11 +426,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AltLeft path: Client/Input/EnumGlKeys.cs - startLine: 230 + startLine: 238 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -452,11 +452,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LAlt path: Client/Input/EnumGlKeys.cs - startLine: 231 + startLine: 239 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -478,11 +478,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AltRight path: Client/Input/EnumGlKeys.cs - startLine: 232 + startLine: 240 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -504,11 +504,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RAlt path: Client/Input/EnumGlKeys.cs - startLine: 233 + startLine: 241 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -530,11 +530,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WinLeft path: Client/Input/EnumGlKeys.cs - startLine: 234 + startLine: 242 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -556,11 +556,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LWin path: Client/Input/EnumGlKeys.cs - startLine: 235 + startLine: 243 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -582,11 +582,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RWin path: Client/Input/EnumGlKeys.cs - startLine: 236 + startLine: 244 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -608,11 +608,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WinRight path: Client/Input/EnumGlKeys.cs - startLine: 237 + startLine: 245 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -634,11 +634,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Menu path: Client/Input/EnumGlKeys.cs - startLine: 238 + startLine: 246 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -660,11 +660,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F1 path: Client/Input/EnumGlKeys.cs - startLine: 239 + startLine: 247 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -686,11 +686,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F2 path: Client/Input/EnumGlKeys.cs - startLine: 240 + startLine: 248 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -712,11 +712,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F3 path: Client/Input/EnumGlKeys.cs - startLine: 241 + startLine: 249 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -738,11 +738,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F4 path: Client/Input/EnumGlKeys.cs - startLine: 242 + startLine: 250 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -764,11 +764,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F5 path: Client/Input/EnumGlKeys.cs - startLine: 243 + startLine: 251 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -790,11 +790,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F6 path: Client/Input/EnumGlKeys.cs - startLine: 244 + startLine: 252 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -816,11 +816,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F7 path: Client/Input/EnumGlKeys.cs - startLine: 245 + startLine: 253 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -842,11 +842,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F8 path: Client/Input/EnumGlKeys.cs - startLine: 246 + startLine: 254 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -868,11 +868,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F9 path: Client/Input/EnumGlKeys.cs - startLine: 247 + startLine: 255 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -894,11 +894,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F10 path: Client/Input/EnumGlKeys.cs - startLine: 248 + startLine: 256 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -920,11 +920,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F11 path: Client/Input/EnumGlKeys.cs - startLine: 249 + startLine: 257 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -946,11 +946,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F12 path: Client/Input/EnumGlKeys.cs - startLine: 250 + startLine: 258 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -972,11 +972,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F13 path: Client/Input/EnumGlKeys.cs - startLine: 251 + startLine: 259 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -998,11 +998,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F14 path: Client/Input/EnumGlKeys.cs - startLine: 252 + startLine: 260 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1024,11 +1024,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F15 path: Client/Input/EnumGlKeys.cs - startLine: 253 + startLine: 261 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1050,11 +1050,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F16 path: Client/Input/EnumGlKeys.cs - startLine: 254 + startLine: 262 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1076,11 +1076,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F17 path: Client/Input/EnumGlKeys.cs - startLine: 255 + startLine: 263 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1102,11 +1102,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F18 path: Client/Input/EnumGlKeys.cs - startLine: 256 + startLine: 264 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1128,11 +1128,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F19 path: Client/Input/EnumGlKeys.cs - startLine: 257 + startLine: 265 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1154,11 +1154,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F20 path: Client/Input/EnumGlKeys.cs - startLine: 258 + startLine: 266 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1180,11 +1180,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F21 path: Client/Input/EnumGlKeys.cs - startLine: 259 + startLine: 267 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1206,11 +1206,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F22 path: Client/Input/EnumGlKeys.cs - startLine: 260 + startLine: 268 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1232,11 +1232,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F23 path: Client/Input/EnumGlKeys.cs - startLine: 261 + startLine: 269 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1258,11 +1258,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F24 path: Client/Input/EnumGlKeys.cs - startLine: 262 + startLine: 270 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1284,11 +1284,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F25 path: Client/Input/EnumGlKeys.cs - startLine: 263 + startLine: 271 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1310,11 +1310,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F26 path: Client/Input/EnumGlKeys.cs - startLine: 264 + startLine: 272 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1336,11 +1336,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F27 path: Client/Input/EnumGlKeys.cs - startLine: 265 + startLine: 273 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1362,11 +1362,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F28 path: Client/Input/EnumGlKeys.cs - startLine: 266 + startLine: 274 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1388,11 +1388,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F29 path: Client/Input/EnumGlKeys.cs - startLine: 267 + startLine: 275 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1414,11 +1414,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F30 path: Client/Input/EnumGlKeys.cs - startLine: 268 + startLine: 276 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1440,11 +1440,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F31 path: Client/Input/EnumGlKeys.cs - startLine: 269 + startLine: 277 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1466,11 +1466,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F32 path: Client/Input/EnumGlKeys.cs - startLine: 270 + startLine: 278 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1492,11 +1492,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F33 path: Client/Input/EnumGlKeys.cs - startLine: 271 + startLine: 279 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1518,11 +1518,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F34 path: Client/Input/EnumGlKeys.cs - startLine: 272 + startLine: 280 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1544,11 +1544,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F35 path: Client/Input/EnumGlKeys.cs - startLine: 273 + startLine: 281 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1570,11 +1570,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Up path: Client/Input/EnumGlKeys.cs - startLine: 274 + startLine: 282 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1596,11 +1596,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Down path: Client/Input/EnumGlKeys.cs - startLine: 275 + startLine: 283 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1622,11 +1622,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Left path: Client/Input/EnumGlKeys.cs - startLine: 276 + startLine: 284 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1648,11 +1648,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Right path: Client/Input/EnumGlKeys.cs - startLine: 277 + startLine: 285 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1674,11 +1674,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Enter path: Client/Input/EnumGlKeys.cs - startLine: 278 + startLine: 286 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1700,11 +1700,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Escape path: Client/Input/EnumGlKeys.cs - startLine: 279 + startLine: 287 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1726,11 +1726,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Space path: Client/Input/EnumGlKeys.cs - startLine: 280 + startLine: 288 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1752,11 +1752,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Tab path: Client/Input/EnumGlKeys.cs - startLine: 281 + startLine: 289 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1778,11 +1778,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Back path: Client/Input/EnumGlKeys.cs - startLine: 282 + startLine: 290 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1804,11 +1804,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BackSpace path: Client/Input/EnumGlKeys.cs - startLine: 283 + startLine: 291 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1830,11 +1830,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Insert path: Client/Input/EnumGlKeys.cs - startLine: 284 + startLine: 292 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1856,11 +1856,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Delete path: Client/Input/EnumGlKeys.cs - startLine: 285 + startLine: 293 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1882,11 +1882,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PageUp path: Client/Input/EnumGlKeys.cs - startLine: 286 + startLine: 294 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1908,11 +1908,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PageDown path: Client/Input/EnumGlKeys.cs - startLine: 287 + startLine: 295 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1934,11 +1934,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Home path: Client/Input/EnumGlKeys.cs - startLine: 288 + startLine: 296 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1960,11 +1960,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: End path: Client/Input/EnumGlKeys.cs - startLine: 289 + startLine: 297 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -1986,11 +1986,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CapsLock path: Client/Input/EnumGlKeys.cs - startLine: 290 + startLine: 298 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2012,11 +2012,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ScrollLock path: Client/Input/EnumGlKeys.cs - startLine: 291 + startLine: 299 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2038,11 +2038,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PrintScreen path: Client/Input/EnumGlKeys.cs - startLine: 292 + startLine: 300 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2064,11 +2064,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Pause path: Client/Input/EnumGlKeys.cs - startLine: 293 + startLine: 301 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2090,11 +2090,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: NumLock path: Client/Input/EnumGlKeys.cs - startLine: 294 + startLine: 302 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2116,11 +2116,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Clear path: Client/Input/EnumGlKeys.cs - startLine: 295 + startLine: 303 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2142,11 +2142,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Sleep path: Client/Input/EnumGlKeys.cs - startLine: 296 + startLine: 304 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2168,11 +2168,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad0 path: Client/Input/EnumGlKeys.cs - startLine: 297 + startLine: 305 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2194,11 +2194,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad1 path: Client/Input/EnumGlKeys.cs - startLine: 298 + startLine: 306 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2220,11 +2220,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad2 path: Client/Input/EnumGlKeys.cs - startLine: 299 + startLine: 307 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2246,11 +2246,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad3 path: Client/Input/EnumGlKeys.cs - startLine: 300 + startLine: 308 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2272,11 +2272,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad4 path: Client/Input/EnumGlKeys.cs - startLine: 301 + startLine: 309 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2298,11 +2298,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad5 path: Client/Input/EnumGlKeys.cs - startLine: 302 + startLine: 310 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2324,11 +2324,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad6 path: Client/Input/EnumGlKeys.cs - startLine: 303 + startLine: 311 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2350,11 +2350,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad7 path: Client/Input/EnumGlKeys.cs - startLine: 304 + startLine: 312 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2376,11 +2376,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad8 path: Client/Input/EnumGlKeys.cs - startLine: 305 + startLine: 313 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2402,11 +2402,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Keypad9 path: Client/Input/EnumGlKeys.cs - startLine: 306 + startLine: 314 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2428,11 +2428,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadDivide path: Client/Input/EnumGlKeys.cs - startLine: 307 + startLine: 315 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2454,11 +2454,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadMultiply path: Client/Input/EnumGlKeys.cs - startLine: 308 + startLine: 316 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2480,11 +2480,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadMinus path: Client/Input/EnumGlKeys.cs - startLine: 309 + startLine: 317 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2506,11 +2506,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadSubtract path: Client/Input/EnumGlKeys.cs - startLine: 310 + startLine: 318 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2532,11 +2532,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadAdd path: Client/Input/EnumGlKeys.cs - startLine: 311 + startLine: 319 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2558,11 +2558,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadPlus path: Client/Input/EnumGlKeys.cs - startLine: 312 + startLine: 320 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2584,11 +2584,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadDecimal path: Client/Input/EnumGlKeys.cs - startLine: 313 + startLine: 321 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2610,11 +2610,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeypadEnter path: Client/Input/EnumGlKeys.cs - startLine: 314 + startLine: 322 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2636,11 +2636,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: A path: Client/Input/EnumGlKeys.cs - startLine: 315 + startLine: 323 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2662,11 +2662,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: B path: Client/Input/EnumGlKeys.cs - startLine: 316 + startLine: 324 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2688,11 +2688,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: C path: Client/Input/EnumGlKeys.cs - startLine: 317 + startLine: 325 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2714,11 +2714,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: D path: Client/Input/EnumGlKeys.cs - startLine: 318 + startLine: 326 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2740,11 +2740,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: E path: Client/Input/EnumGlKeys.cs - startLine: 319 + startLine: 327 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2766,11 +2766,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: F path: Client/Input/EnumGlKeys.cs - startLine: 320 + startLine: 328 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2792,11 +2792,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: G path: Client/Input/EnumGlKeys.cs - startLine: 321 + startLine: 329 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2818,11 +2818,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: H path: Client/Input/EnumGlKeys.cs - startLine: 322 + startLine: 330 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2844,11 +2844,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: I path: Client/Input/EnumGlKeys.cs - startLine: 323 + startLine: 331 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2870,11 +2870,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: J path: Client/Input/EnumGlKeys.cs - startLine: 324 + startLine: 332 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2896,11 +2896,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: K path: Client/Input/EnumGlKeys.cs - startLine: 325 + startLine: 333 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2922,11 +2922,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: L path: Client/Input/EnumGlKeys.cs - startLine: 326 + startLine: 334 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2948,11 +2948,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: M path: Client/Input/EnumGlKeys.cs - startLine: 327 + startLine: 335 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -2974,11 +2974,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: N path: Client/Input/EnumGlKeys.cs - startLine: 328 + startLine: 336 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3000,11 +3000,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: O path: Client/Input/EnumGlKeys.cs - startLine: 329 + startLine: 337 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3026,11 +3026,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: P path: Client/Input/EnumGlKeys.cs - startLine: 330 + startLine: 338 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3052,11 +3052,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Q path: Client/Input/EnumGlKeys.cs - startLine: 331 + startLine: 339 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3078,11 +3078,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: R path: Client/Input/EnumGlKeys.cs - startLine: 332 + startLine: 340 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3104,11 +3104,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: S path: Client/Input/EnumGlKeys.cs - startLine: 333 + startLine: 341 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3130,11 +3130,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: T path: Client/Input/EnumGlKeys.cs - startLine: 334 + startLine: 342 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3156,11 +3156,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: U path: Client/Input/EnumGlKeys.cs - startLine: 335 + startLine: 343 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3182,11 +3182,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: V path: Client/Input/EnumGlKeys.cs - startLine: 336 + startLine: 344 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3208,11 +3208,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: W path: Client/Input/EnumGlKeys.cs - startLine: 337 + startLine: 345 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3234,11 +3234,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: X path: Client/Input/EnumGlKeys.cs - startLine: 338 + startLine: 346 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3260,11 +3260,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Y path: Client/Input/EnumGlKeys.cs - startLine: 339 + startLine: 347 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3286,11 +3286,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Z path: Client/Input/EnumGlKeys.cs - startLine: 340 + startLine: 348 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3312,11 +3312,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number0 path: Client/Input/EnumGlKeys.cs - startLine: 341 + startLine: 349 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3338,11 +3338,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number1 path: Client/Input/EnumGlKeys.cs - startLine: 342 + startLine: 350 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3364,11 +3364,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number2 path: Client/Input/EnumGlKeys.cs - startLine: 343 + startLine: 351 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3390,11 +3390,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number3 path: Client/Input/EnumGlKeys.cs - startLine: 344 + startLine: 352 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3416,11 +3416,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number4 path: Client/Input/EnumGlKeys.cs - startLine: 345 + startLine: 353 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3442,11 +3442,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number5 path: Client/Input/EnumGlKeys.cs - startLine: 346 + startLine: 354 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3468,11 +3468,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number6 path: Client/Input/EnumGlKeys.cs - startLine: 347 + startLine: 355 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3494,11 +3494,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number7 path: Client/Input/EnumGlKeys.cs - startLine: 348 + startLine: 356 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3520,11 +3520,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number8 path: Client/Input/EnumGlKeys.cs - startLine: 349 + startLine: 357 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3546,11 +3546,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Number9 path: Client/Input/EnumGlKeys.cs - startLine: 350 + startLine: 358 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3572,11 +3572,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Tilde path: Client/Input/EnumGlKeys.cs - startLine: 351 + startLine: 359 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3598,11 +3598,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Minus path: Client/Input/EnumGlKeys.cs - startLine: 352 + startLine: 360 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3624,11 +3624,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Plus path: Client/Input/EnumGlKeys.cs - startLine: 353 + startLine: 361 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3650,11 +3650,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LBracket path: Client/Input/EnumGlKeys.cs - startLine: 354 + startLine: 362 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3676,11 +3676,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BracketLeft path: Client/Input/EnumGlKeys.cs - startLine: 355 + startLine: 363 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3702,11 +3702,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BracketRight path: Client/Input/EnumGlKeys.cs - startLine: 356 + startLine: 364 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3728,11 +3728,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RBracket path: Client/Input/EnumGlKeys.cs - startLine: 357 + startLine: 365 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3754,11 +3754,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Semicolon path: Client/Input/EnumGlKeys.cs - startLine: 358 + startLine: 366 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3780,11 +3780,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Quote path: Client/Input/EnumGlKeys.cs - startLine: 359 + startLine: 367 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3806,11 +3806,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Comma path: Client/Input/EnumGlKeys.cs - startLine: 360 + startLine: 368 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3832,11 +3832,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Period path: Client/Input/EnumGlKeys.cs - startLine: 361 + startLine: 369 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3858,11 +3858,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Slash path: Client/Input/EnumGlKeys.cs - startLine: 362 + startLine: 370 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3884,11 +3884,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BackSlash path: Client/Input/EnumGlKeys.cs - startLine: 363 + startLine: 371 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -3910,11 +3910,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LastKey path: Client/Input/EnumGlKeys.cs - startLine: 364 + startLine: 372 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client diff --git a/api/Vintagestory.API.Client.GridRecipeAndUnnamedIngredients.yml b/api/Vintagestory.API.Client.GridRecipeAndUnnamedIngredients.yml index bdbe4fbd..4d752e23 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b02d7b96..4ca52528 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1e666b4f..e3189365 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 33c65767..2a9a4d05 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c654e95d..a8226460 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d715a794..a84e824b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7e69c5b2..659d90be 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 99436cc0..42966abf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e4cb17e5..f2e262f0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 37f585b8..57728c25 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 158effc9..68f4af39 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 aa22dad6..84b4526a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6e9ac409..fad133f0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9ec167a3..7b10003f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d92554ae..378aea73 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6a309633..a06005ff 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d1cdc3ee..90d0043a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 117c2062..98d66247 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f369dd7d..fff39707 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9e06761c..30e069ad 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4034ce2d..79a151ec 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7bf95e58..314b3eb6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a5193304..07a7c3a5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d2a5a0fd..e055c1f9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 55ad7e16..a72292e0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f5c4e616..674f043d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 00e98e8c..55abef5b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d3653dd6..fca397e3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b9cbcafe..75494db7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 aeb76d2f..b706f54a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f347fe17..1fe2a96c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2cf637e9..c59a25b5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3e5bfaa1..bbb6ca0e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6e99a39b..a7f51049 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3170c8c4..efff835a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 960c1851..dac7aa8a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5daad4ff..ef4167df 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b5b0fed6..68760ab8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b0dcb89d..9f1a1c1b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 adf3bf22..9a7935b7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0e7b109b..0e1cc8b3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5620878c..d4ced40e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 065aafcc..78277c44 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1176bc23..c70e9709 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3372451d..e60e936f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2e23a131..ad0f2155 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 258d15a6..a2a5baed 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7001232c..8862f0ad 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 eb228dac..1d8cbd51 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 88b9b4c0..ecaabbbe 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 781aef77..a8da788d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 99e161e9..e763dae9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5aa8b072..d94fb751 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bca9c282..d75fe813 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9203ab85..059b1597 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6778b420..de5022a1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4746c682..dd59427a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2462c512..b9464935 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2e1030f0..f506dbab 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 10453c86..7f135f58 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7c6ce57f..a8019ecd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5c95575d..161234e6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5bd7f039..d3971a5f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7baf07eb..b7532784 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5a7be9f3..a2358d4c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c015df0a..63aaebd5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9dd74e9b..91b65078 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0029bf86..bfc7d053 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 be5b3fa3..1ba3e0b9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3e780bab..8a1de597 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bad09c56..56763af3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a155da8d..9d3a22c2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 604b0bff..d866b050 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9a406c74..8dc5235f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8f61f602..e6f0cd03 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f0287160..5bcf0763 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d1d07b1a..6c183ac6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cd924d51..eda2ead2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a7f55cfa..247213af 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 94a04f1d..8ce82742 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cfe8c5a2..5fa4f3bd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0242284e..d2ff40cf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9a5a7ebf..8b8d350e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2922a33c..2f4ddb2f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fec5d1d9..b778ee47 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 891e69dd..14867506 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3ddce0ca..173867e7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c631effc..209bb172 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 45b7db88..3faaa8aa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ab93d317..e315b24f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9e6aa1f3..d10706e2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bb7ad49c..e5be7d5e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 073f0216..6e2a87a7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bd14962e..98d88c0c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6e33cc7a..3b0ea1e8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0372e70c..575e81bb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 35dc5b8a..76a8706e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 85c8cea7..9a0c8d62 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 74cc00d5..4f1655a2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9bddd373..56e0bd47 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e0536257..00f36465 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 85ecb74e..4ecf3677 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5f39759a..4742b79e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4225cccd..dd4ed62a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7deaea61..bf34caa2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1b148ee0..dc42cf0b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3a434a54..1a388a74 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f5d88bf4..d52f8d1a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b8e8435f..3ea9b385 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 118efc4d..c45ccd3b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9db56f6c..2daf8b9c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 368d426f..cf5ce337 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 43f22126..3f2a807b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 89d128ee..1f8b702e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1dba5a45..c272aadb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7c063ff8..82e25131 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9061474e..564a294d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 887df991..783eddd5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4be2d06f..4afd8809 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b6ec46ed..053398f9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0d027f72..1f7b36a6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 45588569..e89ebdfa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5ba18c03..548e2de5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f5144ab7..2694bb46 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1f1ef211..e25d9cf4 100644 --- a/api/Vintagestory.API.Client.KeyConverter.yml +++ b/api/Vintagestory.API.Client.KeyConverter.yml @@ -17,11 +17,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: KeyConverter path: Client/Input/EnumGlKeys.cs - startLine: 71 + startLine: 79 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -54,11 +54,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: NewKeysToGlKeys path: Client/Input/EnumGlKeys.cs - startLine: 73 + startLine: 81 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -81,11 +81,11 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GlKeysToNew path: Client/Input/EnumGlKeys.cs - startLine: 74 + startLine: 82 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client diff --git a/api/Vintagestory.API.Client.KeyEvent.yml b/api/Vintagestory.API.Client.KeyEvent.yml index 75148f94..4da83873 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 298890c8..e84a4ebe 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5e6ad9de..1501ce61 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c85ffb56..10e81426 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9b255fb9..b5d95f0c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 69a31eeb..b7325d79 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 00bfc89b..c6d2c98e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9d77b819..5eae9058 100644 --- a/api/Vintagestory.API.Client.Matrixf.yml +++ b/api/Vintagestory.API.Client.Matrixf.yml @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Matrixf path: Math/Matrix/Matrix.cs startLine: 4 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Values path: Math/Matrix/Matrix.cs startLine: 6 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ValuesAsDouble path: Math/Matrix/Matrix.cs startLine: 8 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Matrix/Matrix.cs startLine: 17 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Matrix/Matrix.cs startLine: 22 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Matrix.cs startLine: 28 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Identity path: Math/Matrix/Matrix.cs startLine: 33 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Matrix.cs startLine: 39 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Matrix.cs startLine: 60 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Matrix.cs startLine: 81 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Matrix.cs startLine: 88 @@ -396,8 +396,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Matrix.cs startLine: 94 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RotateDeg path: Math/Matrix/Matrix.cs startLine: 100 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Matrix.cs startLine: 109 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Matrix.cs startLine: 117 @@ -534,8 +534,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RotateX path: Math/Matrix/Matrix.cs startLine: 125 @@ -568,8 +568,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RotateY path: Math/Matrix/Matrix.cs startLine: 131 @@ -602,8 +602,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RotateZ path: Math/Matrix/Matrix.cs startLine: 137 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RotateXDeg path: Math/Matrix/Matrix.cs startLine: 147 @@ -670,8 +670,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RotateYDeg path: Math/Matrix/Matrix.cs startLine: 153 @@ -704,8 +704,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RotateZDeg path: Math/Matrix/Matrix.cs startLine: 159 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TransformVector path: Math/Matrix/Matrix.cs startLine: 166 @@ -769,8 +769,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TransformVector path: Math/Matrix/Matrix.cs startLine: 173 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Matrix.cs startLine: 181 @@ -834,8 +834,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Matrix.cs startLine: 187 @@ -865,8 +865,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ReverseMul path: Math/Matrix/Matrix.cs startLine: 193 @@ -899,8 +899,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FollowPlayer path: Math/Matrix/Matrix.cs startLine: 199 @@ -927,8 +927,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FollowPlayerXZ path: Math/Matrix/Matrix.cs startLine: 207 @@ -955,8 +955,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Matrix.cs startLine: 214 @@ -983,8 +983,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Clone path: Math/Matrix/Matrix.cs startLine: 220 diff --git a/api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.yml b/api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.yml index bc8c7655..0bfcffc3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 599f673c..bf6b1e57 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 45ea799f..55f49c2f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1d4d40ed..90570d5a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ba0f09a6..f5aa0d55 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 78e48741..2e524c24 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 da45b1b7..bd8c669c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0bb8fc97..e7eb6008 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5a36c411..1d374c27 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 181f57d6..f9da4bd7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0ff20661..cb03661e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e5a5d208..6de1ad79 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7116578c..cf06ea7b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a439c0d6..50c65387 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1302d04a..b2b71189 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b30ddd43..e6e3704f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9648f384..a5d56c88 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 56307d77..567dafbc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b14d07f4..bf5cd05b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6df85789..71892364 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3750950e..ed3825e6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 446b83f8..cd9bf100 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1dd6b744..fa5590fc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 98cdff62..5f3afae1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 074223c8..23cf5591 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 96688d36..cab2ee29 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 31f3e618..38b9b1ad 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8475712c..9b31ff80 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 42c6e242..49b58d64 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 90b6d1fb..c06e5ccf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2ab97920..d98d91f1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 08f5c57f..98c2ecd9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8eb25be3..28a9c020 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5e6019a9..3e1f4dfa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e7b21d7b..fc93715c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c2d6f956..df39d46e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a4ebfa3f..8b39dfdf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c132f0cd..2efbd754 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 02257032..42a95a6c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c9be411a..73aa7740 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f20663ec..c7136931 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7b1f5f83..83e69abf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5b6b6d18..15054b9f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4042fb1e..2dae3176 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 692a4259..a3790b0f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2cbdb5d7..15f0c821 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4a2d80b8..15632368 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 daee7a1e..12ff9739 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3d7dc80c..2266e80c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1ab5d9e4..d5c2c32b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 19212554..6533e561 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0ef49892..3013af75 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dab212e3..04fa3517 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0fe1ae05..2caa6c30 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a3bac46b..de28d38e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f907066c..eb3e8800 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 15fba3b0..52398dcd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 796ac6f8..49b83156 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 60d7e56a..3b2d72b5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 76afea50..b561416f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5d3a77de..4e3a71cc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e381ad32..6a14e1da 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f42fea44..840e6f10 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c638715d..19d91429 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9bc8fbdb..dfb1766b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1231e570..a7dda482 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 955b3318..02708c72 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b02f133f..980b08ba 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1c81e0df..f5f5bfb9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 570934af..82143457 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 948199e6..10669445 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ddc19e94..6ccdd529 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3c003739..dfebb829 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4d081768..5aa0175c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a7160e44..312e2b6d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d2b19750..ee02884d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c5c47d55..788e1ded 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b518452c..df3ce0cf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1fbe3188..3703c336 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8ce3fab6..6afdb9a5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 48360854..a41c80c6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8b629f81..c4a1437c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ResetAnimation path: Common/Model/Animation/AnimationManager.cs startLine: 76 @@ -457,11 +457,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/AnimationManager.cs - startLine: 91 + startLine: 92 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -496,11 +496,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/AnimationManager.cs - startLine: 116 + startLine: 117 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -538,11 +538,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Model/Animation/AnimationManager.cs - startLine: 137 + startLine: 138 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -575,11 +575,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Model/Animation/AnimationManager.cs - startLine: 171 + startLine: 172 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -618,11 +618,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: onReceivedServerAnimation path: Common/Model/Animation/AnimationManager.cs - startLine: 249 + startLine: 250 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -647,11 +647,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToAttributes path: Common/Model/Animation/AnimationManager.cs - startLine: 259 + startLine: 260 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -687,11 +687,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromAttributes path: Common/Model/Animation/AnimationManager.cs - startLine: 298 + startLine: 299 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -727,11 +727,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnServerTick path: Common/Model/Animation/AnimationManager.cs - startLine: 321 + startLine: 322 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -764,11 +764,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnClientFrame path: Common/Model/Animation/AnimationManager.cs - startLine: 332 + startLine: 333 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -801,11 +801,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RegisterFrameCallback path: Common/Model/Animation/AnimationManager.cs - startLine: 348 + startLine: 349 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -833,11 +833,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Model/Animation/AnimationManager.cs - startLine: 377 + startLine: 378 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -863,11 +863,11 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnAnimationStopped path: Common/Model/Animation/AnimationManager.cs - startLine: 382 + startLine: 383 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common diff --git a/api/Vintagestory.API.Common.AnimationMetaData.yml b/api/Vintagestory.API.Common.AnimationMetaData.yml index c241c707..b408df63 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f2369f81..99d373a7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 723770c2..7beafa73 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ae602fc8..fdb97d6d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 26ea496f..6ef2cb0b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ef9e83ac..021eb8c2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 872cacb6..776e0664 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 de36d4ce..b6d739c8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1839a52c..f9f81805 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 61cb4dbf..2cbec7b0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 32d9e0d1..2a1e1896 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 966c47a5..fe02f5c7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 59da667c..b655ea5b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 833bf8f5..df8f0d18 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 48b7ff57..5dee1e11 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5999d927..0327d288 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b2e8d5d0..843be00b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8a71165c..891726b0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f1b8ce3d..7cdfbf64 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8b8b945d..34541c69 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 43fbf390..49b18d6c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 db2eafa2..8030499f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fcc545cd..e926a558 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 55f867dc..cc35a357 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e35583bf..e385556f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a153f8ed..65de2ccd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0353fc72..ab7bfeee 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f971777a..9eb22fec 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8e597d02..38fdedf4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3d57ed8e..b293ed21 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 93cca5b0..acc1be19 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3008f168..a19cfcf4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0eac7102..9843077e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2320567a..5af0e5ed 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 57d098f0..8381092b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c5440de9..f94d3056 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UndergroundCheckPositions path: Common/Collectible/Block/BlockSchematic.cs startLine: 101 @@ -1047,8 +1047,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BlockRemaps path: Common/Collectible/Block/BlockSchematic.cs startLine: 107 @@ -1081,8 +1081,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ItemRemaps path: Common/Collectible/Block/BlockSchematic.cs startLine: 112 @@ -1112,8 +1112,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockSchematic.cs startLine: 114 @@ -1141,8 +1141,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Init path: Common/Collectible/Block/BlockSchematic.cs startLine: 119 @@ -1170,8 +1170,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: InitMetaBlocks path: Common/Collectible/Block/BlockSchematic.cs startLine: 159 @@ -1199,8 +1199,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LoadMetaInformationAndValidate path: Common/Collectible/Block/BlockSchematic.cs startLine: 172 @@ -1240,8 +1240,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AddArea path: Common/Collectible/Block/BlockSchematic.cs startLine: 330 @@ -1278,8 +1278,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Pack path: Common/Collectible/Block/BlockSchematic.cs startLine: 376 @@ -1311,8 +1311,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Place path: Common/Collectible/Block/BlockSchematic.cs startLine: 537 @@ -1358,8 +1358,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Place path: Common/Collectible/Block/BlockSchematic.cs startLine: 553 @@ -1408,8 +1408,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlaceDecors path: Common/Collectible/Block/BlockSchematic.cs startLine: 626 @@ -1439,8 +1439,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlaceDecors path: Common/Collectible/Block/BlockSchematic.cs startLine: 640 @@ -1472,8 +1472,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TransformWhilePacked path: Common/Collectible/Block/BlockSchematic.cs startLine: 683 @@ -1516,8 +1516,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlaceEntitiesAndBlockEntities path: Common/Collectible/Block/BlockSchematic.cs startLine: 994 @@ -1578,8 +1578,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetJustPositions path: Common/Collectible/Block/BlockSchematic.cs startLine: 1124 @@ -1613,8 +1613,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetStartPos path: Common/Collectible/Block/BlockSchematic.cs startLine: 1150 @@ -1651,8 +1651,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AdjustStartPos path: Common/Collectible/Block/BlockSchematic.cs startLine: 1161 @@ -1689,8 +1689,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LoadFromFile path: Common/Collectible/Block/BlockSchematic.cs startLine: 1192 @@ -1730,8 +1730,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LoadFromString path: Common/Collectible/Block/BlockSchematic.cs startLine: 1230 @@ -1771,8 +1771,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Save path: Common/Collectible/Block/BlockSchematic.cs startLine: 1248 @@ -1809,8 +1809,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToJson path: Common/Collectible/Block/BlockSchematic.cs startLine: 1272 @@ -1837,8 +1837,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EncodeBlockEntityData path: Common/Collectible/Block/BlockSchematic.cs startLine: 1284 @@ -1872,8 +1872,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StringEncodeTreeAttribute path: Common/Collectible/Block/BlockSchematic.cs startLine: 1297 @@ -1907,8 +1907,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: DecodeBlockEntityData path: Common/Collectible/Block/BlockSchematic.cs startLine: 1316 @@ -1945,8 +1945,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlaceReplaceAll path: Common/Collectible/Block/BlockSchematic.cs startLine: 1335 @@ -1985,8 +1985,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlaceReplaceable path: Common/Collectible/Block/BlockSchematic.cs startLine: 1341 @@ -2025,8 +2025,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlaceReplaceAllNoAir path: Common/Collectible/Block/BlockSchematic.cs startLine: 1351 @@ -2065,8 +2065,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlaceReplaceOnlyAir path: Common/Collectible/Block/BlockSchematic.cs startLine: 1361 @@ -2105,8 +2105,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ClonePacked path: Common/Collectible/Block/BlockSchematic.cs startLine: 1378 diff --git a/api/Vintagestory.API.Common.BlockSelection.yml b/api/Vintagestory.API.Common.BlockSelection.yml index a8c8dbd5..f923e9b3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b3cc8e01..b659da4c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 46ce66ad..717083d5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f1920448..fff78c18 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d5173379..eb78d970 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 69b4190f..6e8e05f6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f40ad772..f72af854 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 847d03da..ce098406 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cf4a8a21..a4de3b8e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9a52861d..b4f54326 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 953fc740..c02cc0e6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f805764e..47e9e168 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 09334c24..23779b80 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 204d7d37..74997eae 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a9d4f886..f840c1c6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 944543fc..47c90303 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4d1e83db..33c9e691 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4a7f0997..1d82aa44 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a1a11d43..542b986a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6abc8cc2..b3cf9f39 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6633344d..19c8c665 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 15448cf2..dc3f4355 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 92e9eb8a..a1827e13 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9d214775..90223d7a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3da6aba3..7f12ccb1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ef6a7b10..d6269f60 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cd98b508..2cfea6bb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1a125221..67f7a2f6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0f5b422e..c2492c87 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4c87f833..c214a6f4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8513dcac..ed00ee16 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 78bf4484..3f1d2a20 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 40c6d28a..6f74c11d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c2cd19c4..bb59f546 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a77de543..c1b1e8d2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c7f447c4..8d68637b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 799aa613..10ebeb8c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 acfbd7a5..12eab39a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 166b9467..bfc533a6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 05ad056e..01c5d6ee 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a7a6582b..654dcedc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ba53b608..87b313cb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a6c1ed6b..d22865ff 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fe19fc95..072d45ac 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 92d492f7..af9c1104 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 446f24d2..678829e7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 455c56a2..08309ad7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 51f07bf5..27690bac 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9db983b2..d0053c75 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 15dde874..e20ffafa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d5a3276a..ff954b9c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8906e302..c1c81511 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4a6be594..bb88a4f5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cb1e80db..ff83c561 100644 --- a/api/Vintagestory.API.Common.Entities.Entity.yml +++ b/api/Vintagestory.API.Common.Entities.Entity.yml @@ -132,6 +132,7 @@ items: - Vintagestory.API.Common.Entities.Entity.ToBytes(System.IO.BinaryWriter,System.Boolean) - Vintagestory.API.Common.Entities.Entity.TriggerOnInitialized - Vintagestory.API.Common.Entities.Entity.TryGiveItemStack(Vintagestory.API.Common.ItemStack) + - Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes - Vintagestory.API.Common.Entities.Entity.UpdateDebugAttributes - Vintagestory.API.Common.Entities.Entity.WatchedAttributes - Vintagestory.API.Common.Entities.Entity.WillExport(Vintagestory.API.MathTools.BlockPos) @@ -157,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Entity path: Common/Entity/Entity.cs startLine: 24 @@ -221,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SplashParticleProps path: Common/Entity/Entity.cs startLine: 26 @@ -248,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FireParticleProps path: Common/Entity/Entity.cs startLine: 27 @@ -275,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FloatingSedimentParticles path: Common/Entity/Entity.cs startLine: 28 @@ -302,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AirBubbleParticleProps path: Common/Entity/Entity.cs startLine: 30 @@ -329,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: bioLumiParticles path: Common/Entity/Entity.cs startLine: 31 @@ -356,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: bioLumiNoise path: Common/Entity/Entity.cs startLine: 32 @@ -383,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnInitialized path: Common/Entity/Entity.cs startLine: 34 @@ -410,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: World path: Common/Entity/Entity.cs startLine: 112 @@ -439,8 +440,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Api path: Common/Entity/Entity.cs startLine: 117 @@ -468,8 +469,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsCreature path: Common/Entity/Entity.cs startLine: 124 @@ -504,8 +505,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PhysicsUpdateWatcher path: Common/Entity/Entity.cs startLine: 129 @@ -533,8 +534,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AnimManager path: Common/Entity/Entity.cs startLine: 135 @@ -567,8 +568,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ActivityTimers path: Common/Entity/Entity.cs startLine: 140 @@ -596,8 +597,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Pos path: Common/Entity/Entity.cs startLine: 146 @@ -625,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ServerPos path: Common/Entity/Entity.cs startLine: 151 @@ -654,8 +655,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PreviousServerPos path: Common/Entity/Entity.cs startLine: 156 @@ -683,8 +684,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PositionBeforeFalling path: Common/Entity/Entity.cs startLine: 161 @@ -712,8 +713,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: InChunkIndex3d path: Common/Entity/Entity.cs startLine: 163 @@ -739,8 +740,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CollisionBox path: Common/Entity/Entity.cs startLine: 168 @@ -768,8 +769,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OriginCollisionBox path: Common/Entity/Entity.cs startLine: 173 @@ -797,8 +798,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SelectionBox path: Common/Entity/Entity.cs startLine: 179 @@ -826,8 +827,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OriginSelectionBox path: Common/Entity/Entity.cs startLine: 183 @@ -855,8 +856,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Teleporting path: Common/Entity/Entity.cs startLine: 188 @@ -884,8 +885,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsTeleport path: Common/Entity/Entity.cs startLine: 192 @@ -913,8 +914,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EntityId path: Common/Entity/Entity.cs startLine: 198 @@ -942,8 +943,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SimulationRange path: Common/Entity/Entity.cs startLine: 203 @@ -971,8 +972,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ClimbingOnFace path: Common/Entity/Entity.cs startLine: 208 @@ -1000,8 +1001,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ClimbingIntoFace path: Common/Entity/Entity.cs startLine: 209 @@ -1027,8 +1028,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ClimbingOnCollBox path: Common/Entity/Entity.cs startLine: 214 @@ -1056,8 +1057,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnGround path: Common/Entity/Entity.cs startLine: 219 @@ -1085,8 +1086,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FeetInLiquid path: Common/Entity/Entity.cs startLine: 224 @@ -1114,8 +1115,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsOnFire path: Common/Entity/Entity.cs startLine: 226 @@ -1143,8 +1144,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: resetLightHsv path: Common/Entity/Entity.cs startLine: 237 @@ -1170,8 +1171,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: InLava path: Common/Entity/Entity.cs startLine: 239 @@ -1197,8 +1198,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: InLavaBeginTotalMs path: Common/Entity/Entity.cs startLine: 240 @@ -1224,8 +1225,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnFireBeginTotalMs path: Common/Entity/Entity.cs startLine: 242 @@ -1251,8 +1252,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Swimming path: Common/Entity/Entity.cs startLine: 247 @@ -1280,8 +1281,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CollidedVertically path: Common/Entity/Entity.cs startLine: 252 @@ -1309,8 +1310,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CollidedHorizontally path: Common/Entity/Entity.cs startLine: 257 @@ -1338,8 +1339,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: State path: Common/Entity/Entity.cs startLine: 262 @@ -1367,8 +1368,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: DespawnReason path: Common/Entity/Entity.cs startLine: 264 @@ -1394,8 +1395,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WatchedAttributes path: Common/Entity/Entity.cs startLine: 269 @@ -1423,8 +1424,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: DebugAttributes path: Common/Entity/Entity.cs startLine: 274 @@ -1452,8 +1453,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Entity/Entity.cs startLine: 279 @@ -1481,8 +1482,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsRendered path: Common/Entity/Entity.cs startLine: 285 @@ -1510,8 +1511,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsShadowRendered path: Common/Entity/Entity.cs startLine: 290 @@ -1539,8 +1540,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HurtColor path: Common/Entity/Entity.cs startLine: 295 @@ -1568,8 +1569,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Stats path: Common/Entity/Entity.cs startLine: 297 @@ -1595,8 +1596,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: touchDistanceSq path: Common/Entity/Entity.cs startLine: 302 @@ -1622,8 +1623,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ownPosRepulse path: Common/Entity/Entity.cs startLine: 303 @@ -1649,8 +1650,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: hasRepulseBehavior path: Common/Entity/Entity.cs startLine: 304 @@ -1676,8 +1677,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: packet path: Common/Entity/Entity.cs startLine: 309 @@ -1705,8 +1706,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Properties path: Common/Entity/Entity.cs startLine: 319 @@ -1734,8 +1735,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SidedProperties path: Common/Entity/Entity.cs startLine: 321 @@ -1763,8 +1764,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/Entity.cs startLine: 335 @@ -1794,8 +1795,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SwimmingOffsetY path: Common/Entity/Entity.cs startLine: 344 @@ -1825,8 +1826,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Collided path: Common/Entity/Entity.cs startLine: 353 @@ -1856,8 +1857,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SidedPos path: Common/Entity/Entity.cs startLine: 358 @@ -1887,8 +1888,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LocalEyePos path: Common/Entity/Entity.cs startLine: 366 @@ -1918,8 +1919,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ApplyGravity path: Common/Entity/Entity.cs startLine: 372 @@ -1949,8 +1950,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: MaterialDensity path: Common/Entity/Entity.cs startLine: 382 @@ -1983,8 +1984,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LightHsv path: Common/Entity/Entity.cs startLine: 390 @@ -2014,8 +2015,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShouldDespawn path: Common/Entity/Entity.cs startLine: 396 @@ -2045,8 +2046,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StoreWithChunk path: Common/Entity/Entity.cs startLine: 404 @@ -2076,8 +2077,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AlwaysActive path: Common/Entity/Entity.cs startLine: 409 @@ -2107,8 +2108,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Alive path: Common/Entity/Entity.cs startLine: 414 @@ -2138,8 +2139,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: alive path: Common/Entity/Entity.cs startLine: 422 @@ -2165,8 +2166,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: minRangeToClient path: Common/Entity/Entity.cs startLine: 423 @@ -2192,8 +2193,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IdleSoundChanceModifier path: Common/Entity/Entity.cs startLine: 425 @@ -2221,8 +2222,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RenderColor path: Common/Entity/Entity.cs startLine: 434 @@ -2252,8 +2253,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LadderFixDelta path: Common/Entity/Entity.cs startLine: 447 @@ -2283,8 +2284,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/Entity.cs startLine: 455 @@ -2314,8 +2315,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/Entity.cs startLine: 468 @@ -2349,8 +2350,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnHurt path: Common/Entity/Entity.cs startLine: 479 @@ -2387,8 +2388,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/Entity.cs startLine: 491 @@ -2428,8 +2429,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AfterInitialized path: Common/Entity/Entity.cs startLine: 575 @@ -2460,8 +2461,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TriggerOnInitialized path: Common/Entity/Entity.cs startLine: 583 @@ -2486,8 +2487,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: DoInitialActiveCheck path: Common/Entity/Entity.cs startLine: 588 @@ -2515,8 +2516,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: updateColSelBoxes path: Common/Entity/Entity.cs startLine: 613 @@ -2541,8 +2542,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: updateOnFire path: Common/Entity/Entity.cs startLine: 636 @@ -2567,8 +2568,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TryGiveItemStack path: Common/Entity/Entity.cs startLine: 661 @@ -2602,8 +2603,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetDrops path: Common/Entity/Entity.cs startLine: 676 @@ -2643,8 +2644,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TeleportToDouble path: Common/Entity/Entity.cs startLine: 734 @@ -2687,8 +2688,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 762 @@ -2728,8 +2729,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 771 @@ -2760,8 +2761,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 780 @@ -2792,8 +2793,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 790 @@ -2827,8 +2828,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ReceiveDamage path: Common/Entity/Entity.cs startLine: 810 @@ -2868,8 +2869,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/Entity.cs startLine: 861 @@ -2909,8 +2910,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/Entity.cs startLine: 871 @@ -2944,8 +2945,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ApplyFireDamage path: Common/Entity/Entity.cs startLine: 980 @@ -2976,8 +2977,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: DieInLava path: Common/Entity/Entity.cs startLine: 990 @@ -3002,8 +3003,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnAsyncParticleTick path: Common/Entity/Entity.cs startLine: 1006 @@ -3036,8 +3037,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Ignite path: Common/Entity/Entity.cs startLine: 1012 @@ -3062,8 +3063,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Entity/Entity.cs startLine: 1025 @@ -3100,8 +3101,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnFallToGround path: Common/Entity/Entity.cs startLine: 1045 @@ -3135,8 +3136,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCollided path: Common/Entity/Entity.cs startLine: 1056 @@ -3163,8 +3164,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/Entity.cs startLine: 1064 @@ -3191,8 +3192,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SpawnWaterMovementParticles path: Common/Entity/Entity.cs startLine: 1105 @@ -3229,8 +3230,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnEntityLoaded path: Common/Entity/Entity.cs startLine: 1143 @@ -3257,8 +3258,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnEntitySpawn path: Common/Entity/Entity.cs startLine: 1156 @@ -3285,8 +3286,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/Entity/Entity.cs startLine: 1170 @@ -3317,8 +3318,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnExitedLiquid path: Common/Entity/Entity.cs startLine: 1187 @@ -3345,8 +3346,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnInteract path: Common/Entity/Entity.cs startLine: 1199 @@ -3386,8 +3387,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetInteractionHelp path: Common/Entity/Entity.cs startLine: 1217 @@ -3427,8 +3428,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerPos path: Common/Entity/Entity.cs startLine: 1238 @@ -3461,8 +3462,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedClientPacket path: Common/Entity/Entity.cs startLine: 1260 @@ -3502,8 +3503,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerPacket path: Common/Entity/Entity.cs startLine: 1278 @@ -3545,8 +3546,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/Entity.cs startLine: 1299 @@ -3581,8 +3582,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCollected path: Common/Entity/Entity.cs startLine: 1309 @@ -3616,8 +3617,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnStateChanged path: Common/Entity/Entity.cs startLine: 1318 @@ -3648,8 +3649,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SetCollisionBox path: Common/Entity/Entity.cs startLine: 1337 @@ -3686,8 +3687,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SetSelectionBox path: Common/Entity/Entity.cs startLine: 1350 @@ -3720,8 +3721,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AddBehavior path: Common/Entity/Entity.cs startLine: 1367 @@ -3752,8 +3753,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RemoveBehavior path: Common/Entity/Entity.cs startLine: 1377 @@ -3784,8 +3785,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Entity/Entity.cs startLine: 1387 @@ -3822,8 +3823,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Entity/Entity.cs startLine: 1397 @@ -3855,8 +3856,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Entity/Entity.cs startLine: 1412 @@ -3893,8 +3894,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Entity/Entity.cs startLine: 1421 @@ -3929,8 +3930,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsActivityRunning path: Common/Entity/Entity.cs startLine: 1432 @@ -3967,8 +3968,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RemainingActivityTime path: Common/Entity/Entity.cs startLine: 1444 @@ -4005,8 +4006,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SetActivityRunning path: Common/Entity/Entity.cs startLine: 1456 @@ -4043,8 +4044,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/Entity.cs startLine: 1465 @@ -4057,6 +4058,32 @@ items: content: public virtual void UpdateDebugAttributes() content.vb: Public Overridable Sub UpdateDebugAttributes() overload: Vintagestory.API.Common.Entities.Entity.UpdateDebugAttributes* +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + commentId: M:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + id: UpdateAnimationDebugAttributes + parent: Vintagestory.API.Common.Entities.Entity + langs: + - csharp + - vb + name: UpdateAnimationDebugAttributes() + nameWithType: Entity.UpdateAnimationDebugAttributes() + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes() + type: Method + source: + remote: + path: VintagestoryApi/Common/Entity/Entity.cs + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git + id: UpdateAnimationDebugAttributes + path: Common/Entity/Entity.cs + startLine: 1475 + assemblies: + - VintagestoryAPI + namespace: Vintagestory.API.Common.Entities + syntax: + content: protected virtual void UpdateAnimationDebugAttributes() + content.vb: Protected Overridable Sub UpdateAnimationDebugAttributes() + overload: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes* - uid: Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) commentId: M:Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) id: FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) @@ -4071,11 +4098,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/Entity.cs - startLine: 1505 + startLine: 1509 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4112,11 +4139,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/Entity.cs - startLine: 1517 + startLine: 1521 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4150,11 +4177,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Entity/Entity.cs - startLine: 1609 + startLine: 1613 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4188,11 +4215,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SetHeadPositionToWatchedAttributes path: Common/Entity/Entity.cs - startLine: 1664 + startLine: 1668 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4216,11 +4243,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetHeadPositionFromWatchedAttributes path: Common/Entity/Entity.cs - startLine: 1671 + startLine: 1675 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4244,11 +4271,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Revive path: Common/Entity/Entity.cs - startLine: 1682 + startLine: 1686 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4272,11 +4299,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/Entity.cs - startLine: 1699 + startLine: 1703 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4305,11 +4332,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlayEntitySound path: Common/Entity/Entity.cs - startLine: 1758 + startLine: 1762 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4349,11 +4376,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CanCollect path: Common/Entity/Entity.cs - startLine: 1779 + startLine: 1783 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4384,11 +4411,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Notify path: Common/Entity/Entity.cs - startLine: 1792 + startLine: 1796 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4422,11 +4449,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WillExport path: Common/Entity/Entity.cs - startLine: 1808 + startLine: 1812 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4461,11 +4488,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: DidImportOrExport path: Common/Entity/Entity.cs - startLine: 1829 + startLine: 1833 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4498,11 +4525,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Entity/Entity.cs - startLine: 1851 + startLine: 1855 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4536,11 +4563,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/Entity.cs - startLine: 1868 + startLine: 1872 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4597,11 +4624,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/Entity.cs - startLine: 1884 + startLine: 1888 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4649,11 +4676,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetName path: Common/Entity/Entity.cs - startLine: 1896 + startLine: 1900 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4680,11 +4707,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetInfoText path: Common/Entity/Entity.cs - startLine: 1910 + startLine: 1914 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4711,11 +4738,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/Entity.cs - startLine: 1961 + startLine: 1965 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -4746,11 +4773,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Entity/Entity.cs - startLine: 1970 + startLine: 1974 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common.Entities @@ -6942,6 +6969,12 @@ references: name: UpdateDebugAttributes nameWithType: Entity.UpdateDebugAttributes fullName: Vintagestory.API.Common.Entities.Entity.UpdateDebugAttributes +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes* + commentId: Overload:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + nameWithType: Entity.UpdateAnimationDebugAttributes + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes - uid: Vintagestory.API.Common.Entities.Entity.FromBytes* commentId: Overload:Vintagestory.API.Common.Entities.Entity.FromBytes href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_FromBytes_System_IO_BinaryReader_System_Boolean_System_Collections_Generic_Dictionary_System_String_System_String__ diff --git a/api/Vintagestory.API.Common.Entities.EntityBehavior.yml b/api/Vintagestory.API.Common.Entities.EntityBehavior.yml index e6e6d579..0a76447a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f009a812..31497ee8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dce87470..e8327b13 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 eb74199e..17bc773a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8ad4fabf..5d8dfe17 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b40463b5..fbfe59b7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 53935b75..5f29b074 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8c94804d..649fd6cb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 20280375..c0a99cb1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cebe4f10..2bfc46ac 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f3b8c7e6..c3cb7188 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9e4278c6..6a35ad01 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c3f9886f..efac2a68 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9206552e..8c48bbe0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7c58ef7a..2eff25e3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ca889bb4..9d334ddd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 acf8ecd4..a41c1a52 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 345b740c..dfa42d8d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1054c746..b5852b9c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dbae379f..06878e01 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 220715a7..a0f03fce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 29ba2c25..6909123b 100644 --- a/api/Vintagestory.API.Common.EntityAgent.yml +++ b/api/Vintagestory.API.Common.EntityAgent.yml @@ -42,7 +42,6 @@ items: - Vintagestory.API.Common.EntityAgent.ShouldReceiveSaturation(System.Single,Vintagestory.API.Common.EnumFoodCategory,System.Single,System.Single) - Vintagestory.API.Common.EntityAgent.SpawnFloatingSediment(Vintagestory.API.Client.IAsyncParticleManager) - Vintagestory.API.Common.EntityAgent.SpawnSnowStepParticles - - Vintagestory.API.Common.EntityAgent.StopHandAnims - Vintagestory.API.Common.EntityAgent.ToBytes(System.IO.BinaryWriter,System.Boolean) - Vintagestory.API.Common.EntityAgent.TryGiveItemStack(Vintagestory.API.Common.ItemStack) - Vintagestory.API.Common.EntityAgent.TryMount(Vintagestory.API.Common.IMountable) @@ -70,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EntityAgent path: Common/Entity/EntityAgent.cs startLine: 33 @@ -201,6 +200,7 @@ items: - Vintagestory.API.Common.Entities.Entity.IsActivityRunning(System.String) - Vintagestory.API.Common.Entities.Entity.RemainingActivityTime(System.String) - Vintagestory.API.Common.Entities.Entity.SetActivityRunning(System.String,System.Int32) + - Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes - Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) - Vintagestory.API.Common.Entities.Entity.Revive - Vintagestory.API.Common.Entities.Entity.PlayEntitySound(System.String,Vintagestory.API.Common.IPlayer,System.Boolean,System.Single) @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HandleHandAnimations path: Common/Entity/EntityAgent.cs startLine: 600 @@ -1452,32 +1452,6 @@ items: nameWithType.vb: EntityAgent.HandleHandAnimations(Single) fullName.vb: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(Single) name.vb: HandleHandAnimations(Single) -- uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - commentId: M:Vintagestory.API.Common.EntityAgent.StopHandAnims - id: StopHandAnims - parent: Vintagestory.API.Common.EntityAgent - langs: - - csharp - - vb - name: StopHandAnims() - nameWithType: EntityAgent.StopHandAnims() - fullName: Vintagestory.API.Common.EntityAgent.StopHandAnims() - type: Method - source: - remote: - path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git - id: StopHandAnims - path: Common/Entity/EntityAgent.cs - startLine: 605 - assemblies: - - VintagestoryAPI - namespace: Vintagestory.API.Common - syntax: - content: public virtual void StopHandAnims() - content.vb: Public Overridable Sub StopHandAnims() - overload: Vintagestory.API.Common.EntityAgent.StopHandAnims* - uid: Vintagestory.API.Common.EntityAgent.insideBlock commentId: F:Vintagestory.API.Common.EntityAgent.insideBlock id: insideBlock @@ -1492,11 +1466,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: insideBlock path: Common/Entity/EntityAgent.cs - startLine: 615 + startLine: 608 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1521,11 +1495,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: insidePos path: Common/Entity/EntityAgent.cs - startLine: 619 + startLine: 612 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1550,11 +1524,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetWalkSpeedMultiplier path: Common/Entity/EntityAgent.cs - startLine: 625 + startLine: 618 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1587,11 +1561,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Entity/EntityAgent.cs - startLine: 653 + startLine: 646 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1624,11 +1598,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityAgent.cs - startLine: 679 + startLine: 672 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1663,11 +1637,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SetHeadPositionToWatchedAttributes path: Common/Entity/EntityAgent.cs - startLine: 701 + startLine: 694 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1692,11 +1666,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetHeadPositionFromWatchedAttributes path: Common/Entity/EntityAgent.cs - startLine: 715 + startLine: 708 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1721,11 +1695,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TryStopHandAction path: Common/Entity/EntityAgent.cs - startLine: 729 + startLine: 722 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1762,11 +1736,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WalkInventory path: Common/Entity/EntityAgent.cs - startLine: 752 + startLine: 745 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1794,11 +1768,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityAgent.cs - startLine: 758 + startLine: 751 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1823,11 +1797,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Entity/EntityAgent.cs - startLine: 766 + startLine: 759 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1862,11 +1836,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: hideClothing path: Common/Entity/EntityAgent.cs - startLine: 773 + startLine: 766 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1889,11 +1863,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: addGearToShape path: Common/Entity/EntityAgent.cs - startLine: 776 + startLine: 769 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1925,11 +1899,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: addGearToShape path: Common/Entity/EntityAgent.cs - startLine: 812 + startLine: 805 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1963,11 +1937,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TryGiveItemStack path: Common/Entity/EntityAgent.cs - startLine: 888 + startLine: 881 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1999,11 +1973,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/EntityAgent.cs - startLine: 925 + startLine: 918 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2051,11 +2025,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Entity/EntityAgent.cs - startLine: 943 + startLine: 936 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -4008,6 +3982,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + commentId: M:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + parent: Vintagestory.API.Common.Entities.Entity + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes() + nameWithType: Entity.UpdateAnimationDebugAttributes() + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes() + spec.csharp: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) + spec.vb: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) - uid: Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) commentId: M:Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) parent: Vintagestory.API.Common.Entities.Entity @@ -6186,12 +6179,6 @@ references: name: HandleHandAnimations nameWithType: EntityAgent.HandleHandAnimations fullName: Vintagestory.API.Common.EntityAgent.HandleHandAnimations -- uid: Vintagestory.API.Common.EntityAgent.StopHandAnims* - commentId: Overload:Vintagestory.API.Common.EntityAgent.StopHandAnims - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims - name: StopHandAnims - nameWithType: EntityAgent.StopHandAnims - fullName: Vintagestory.API.Common.EntityAgent.StopHandAnims - uid: Vintagestory.API.Common.Block commentId: T:Vintagestory.API.Common.Block parent: Vintagestory.API.Common diff --git a/api/Vintagestory.API.Common.EntityBehaviorNameTag.yml b/api/Vintagestory.API.Common.EntityBehaviorNameTag.yml index 5d430cf0..5e14e201 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bf9ebb37..acb6fb7b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b8953805..4aeb7f17 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EntityChunky path: Common/Entity/EntityChunky.cs startLine: 10 @@ -161,6 +161,7 @@ items: - Vintagestory.API.Common.Entities.Entity.IsActivityRunning(System.String) - Vintagestory.API.Common.Entities.Entity.RemainingActivityTime(System.String) - Vintagestory.API.Common.Entities.Entity.SetActivityRunning(System.String,System.Int32) + - Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes - Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) - Vintagestory.API.Common.Entities.Entity.ToBytes(System.IO.BinaryWriter,System.Boolean) - Vintagestory.API.Common.Entities.Entity.SetHeadPositionToWatchedAttributes @@ -219,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: blocks path: Common/Entity/EntityChunky.cs startLine: 12 @@ -246,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: subDimensionIndex path: Common/Entity/EntityChunky.cs startLine: 18 @@ -278,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/EntityChunky.cs startLine: 23 @@ -310,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ApplyGravity path: Common/Entity/EntityChunky.cs startLine: 28 @@ -342,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityChunky.cs startLine: 33 @@ -371,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CreateAndLinkWithDimension path: Common/Entity/EntityChunky.cs startLine: 40 @@ -404,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AssociateWithDimension path: Common/Entity/EntityChunky.cs startLine: 49 @@ -433,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityChunky.cs startLine: 58 @@ -474,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityChunky.cs startLine: 89 @@ -510,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerPos path: Common/Entity/EntityChunky.cs startLine: 112 @@ -545,8 +546,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/Entity/EntityChunky.cs startLine: 132 @@ -578,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/EntityChunky.cs startLine: 143 @@ -616,8 +617,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityChunky.cs startLine: 148 @@ -645,8 +646,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/EntityChunky.cs startLine: 153 @@ -681,8 +682,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Entity/EntityChunky.cs startLine: 157 @@ -717,8 +718,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/EntityChunky.cs startLine: 161 @@ -751,8 +752,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/EntityChunky.cs startLine: 188 @@ -780,8 +781,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/EntityChunky.cs startLine: 194 @@ -822,8 +823,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ReceiveDamage path: Common/Entity/EntityChunky.cs startLine: 199 @@ -864,8 +865,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityChunky.cs startLine: 204 @@ -902,8 +903,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SwimmingOffsetY path: Common/Entity/EntityChunky.cs startLine: 217 @@ -2830,6 +2831,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + commentId: M:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + parent: Vintagestory.API.Common.Entities.Entity + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes() + nameWithType: Entity.UpdateAnimationDebugAttributes() + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes() + spec.csharp: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) + spec.vb: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) - uid: Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) commentId: M:Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) parent: Vintagestory.API.Common.Entities.Entity diff --git a/api/Vintagestory.API.Common.EntityControls.yml b/api/Vintagestory.API.Common.EntityControls.yml index ec1a944d..f4548ec3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 34aca8b1..02acc8fd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f98bb7c2..5863d604 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b6a21413..2210cc22 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 65e5c41f..56ae0416 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0d7b78f7..ee260e47 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d9bc661c..bdbe6282 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 82bd3390..d606ce5d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EntityHumanoid path: Common/Entity/EntityHumanoid.cs startLine: 2 @@ -70,7 +70,6 @@ items: - Vintagestory.API.Common.EntityAgent.SpawnFloatingSediment(Vintagestory.API.Client.IAsyncParticleManager) - Vintagestory.API.Common.EntityAgent.onAnimControls(Vintagestory.API.Common.AnimationMetaData,System.Boolean,System.Boolean) - Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) - - Vintagestory.API.Common.EntityAgent.StopHandAnims - Vintagestory.API.Common.EntityAgent.insideBlock - Vintagestory.API.Common.EntityAgent.insidePos - Vintagestory.API.Common.EntityAgent.GetWalkSpeedMultiplier(System.Double) @@ -199,6 +198,7 @@ items: - Vintagestory.API.Common.Entities.Entity.IsActivityRunning(System.String) - Vintagestory.API.Common.Entities.Entity.RemainingActivityTime(System.String) - Vintagestory.API.Common.Entities.Entity.SetActivityRunning(System.String,System.Int32) + - Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes - Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) - Vintagestory.API.Common.Entities.Entity.Revive - Vintagestory.API.Common.Entities.Entity.PlayEntitySound(System.String,Vintagestory.API.Common.IPlayer,System.Boolean,System.Single) @@ -1101,25 +1101,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) -- uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - commentId: M:Vintagestory.API.Common.EntityAgent.StopHandAnims - parent: Vintagestory.API.Common.EntityAgent - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims - name: StopHandAnims() - nameWithType: EntityAgent.StopHandAnims() - fullName: Vintagestory.API.Common.EntityAgent.StopHandAnims() - spec.csharp: - - uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - name: StopHandAnims - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims - - name: ( - - name: ) - spec.vb: - - uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - name: StopHandAnims - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims - - name: ( - - name: ) - uid: Vintagestory.API.Common.EntityAgent.insideBlock commentId: F:Vintagestory.API.Common.EntityAgent.insideBlock parent: Vintagestory.API.Common.EntityAgent @@ -3635,6 +3616,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + commentId: M:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + parent: Vintagestory.API.Common.Entities.Entity + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes() + nameWithType: Entity.UpdateAnimationDebugAttributes() + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes() + spec.csharp: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) + spec.vb: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) - uid: Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) commentId: M:Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) parent: Vintagestory.API.Common.Entities.Entity diff --git a/api/Vintagestory.API.Common.EntityItem.yml b/api/Vintagestory.API.Common.EntityItem.yml index d5204531..a0aa82a1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EntityItem path: Common/Entity/EntityItem.cs startLine: 19 @@ -163,6 +163,7 @@ items: - Vintagestory.API.Common.Entities.Entity.IsActivityRunning(System.String) - Vintagestory.API.Common.Entities.Entity.RemainingActivityTime(System.String) - Vintagestory.API.Common.Entities.Entity.SetActivityRunning(System.String,System.Int32) + - Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes - Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) - Vintagestory.API.Common.Entities.Entity.ToBytes(System.IO.BinaryWriter,System.Boolean) - Vintagestory.API.Common.Entities.Entity.SetHeadPositionToWatchedAttributes @@ -220,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Slot path: Common/Entity/EntityItem.cs startLine: 21 @@ -247,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: itemSpawnedMilliseconds path: Common/Entity/EntityItem.cs startLine: 23 @@ -274,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Itemstack path: Common/Entity/EntityItem.cs startLine: 28 @@ -305,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ByPlayerUid path: Common/Entity/EntityItem.cs startLine: 37 @@ -336,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: MaterialDensity path: Common/Entity/EntityItem.cs startLine: 46 @@ -368,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/EntityItem.cs startLine: 54 @@ -400,8 +401,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LightHsv path: Common/Entity/EntityItem.cs startLine: 62 @@ -432,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityItem.cs startLine: 72 @@ -461,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityItem.cs startLine: 78 @@ -502,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityItem.cs startLine: 146 @@ -538,11 +539,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/Entity/EntityItem.cs - startLine: 264 + startLine: 276 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -571,11 +572,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/EntityItem.cs - startLine: 275 + startLine: 287 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -609,11 +610,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityItem.cs - startLine: 280 + startLine: 292 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -638,11 +639,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/EntityItem.cs - startLine: 285 + startLine: 297 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -674,11 +675,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Entity/EntityItem.cs - startLine: 289 + startLine: 301 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -710,11 +711,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/EntityItem.cs - startLine: 293 + startLine: 305 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -744,11 +745,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromItemstack path: Common/Entity/EntityItem.cs - startLine: 315 + startLine: 327 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -788,11 +789,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CanCollect path: Common/Entity/EntityItem.cs - startLine: 338 + startLine: 350 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -824,11 +825,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCollected path: Common/Entity/EntityItem.cs - startLine: 343 + startLine: 355 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -860,11 +861,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/EntityItem.cs - startLine: 348 + startLine: 360 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -889,11 +890,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/EntityItem.cs - startLine: 354 + startLine: 366 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -931,11 +932,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ReceiveDamage path: Common/Entity/EntityItem.cs - startLine: 361 + startLine: 373 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -973,11 +974,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityItem.cs - startLine: 369 + startLine: 381 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1011,11 +1012,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SwimmingOffsetY path: Common/Entity/EntityItem.cs - startLine: 388 + startLine: 400 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2938,6 +2939,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + commentId: M:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + parent: Vintagestory.API.Common.Entities.Entity + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes() + nameWithType: Entity.UpdateAnimationDebugAttributes() + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes() + spec.csharp: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) + spec.vb: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) - uid: Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) commentId: M:Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) parent: Vintagestory.API.Common.Entities.Entity diff --git a/api/Vintagestory.API.Common.EntityItemSlot.yml b/api/Vintagestory.API.Common.EntityItemSlot.yml index c9fa288a..17937822 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 213a20b2..15808006 100644 --- a/api/Vintagestory.API.Common.EntityPlayer.yml +++ b/api/Vintagestory.API.Common.EntityPlayer.yml @@ -24,7 +24,7 @@ items: - Vintagestory.API.Common.EntityPlayer.GetName - Vintagestory.API.Common.EntityPlayer.GetNearestBlockSoundSource(Vintagestory.API.MathTools.BlockPos,System.Double,System.Int32,System.Boolean) - Vintagestory.API.Common.EntityPlayer.GetWalkSpeedMultiplier(System.Double) - - Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(System.Single) + - Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(System.Single) - Vintagestory.API.Common.EntityPlayer.HeadYawLimits - Vintagestory.API.Common.EntityPlayer.Ignite - Vintagestory.API.Common.EntityPlayer.Initialize(Vintagestory.API.Common.Entities.EntityProperties,Vintagestory.API.Common.ICoreAPI,System.Int64) @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EntityPlayer path: Common/Entity/EntityPlayer.cs startLine: 19 @@ -132,7 +132,7 @@ items: - Vintagestory.API.Common.EntityAgent.ShouldReceiveSaturation(System.Single,Vintagestory.API.Common.EnumFoodCategory,System.Single,System.Single) - Vintagestory.API.Common.EntityAgent.SpawnSnowStepParticles - Vintagestory.API.Common.EntityAgent.SpawnFloatingSediment(Vintagestory.API.Client.IAsyncParticleManager) - - Vintagestory.API.Common.EntityAgent.StopHandAnims + - Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) - Vintagestory.API.Common.EntityAgent.insideBlock - Vintagestory.API.Common.EntityAgent.insidePos - Vintagestory.API.Common.EntityAgent.ToBytes(System.IO.BinaryWriter,System.Boolean) @@ -240,6 +240,7 @@ items: - Vintagestory.API.Common.Entities.Entity.IsActivityRunning(System.String) - Vintagestory.API.Common.Entities.Entity.RemainingActivityTime(System.String) - Vintagestory.API.Common.Entities.Entity.SetActivityRunning(System.String,System.Int32) + - Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes - Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) - Vintagestory.API.Common.Entities.Entity.CanCollect(Vintagestory.API.Common.Entities.Entity) - Vintagestory.API.Common.Entities.Entity.Notify(System.String,System.Object) @@ -291,8 +292,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PreviousBlockSelection path: Common/Entity/EntityPlayer.cs startLine: 24 @@ -320,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BlockSelection path: Common/Entity/EntityPlayer.cs startLine: 29 @@ -349,8 +350,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EntitySelection path: Common/Entity/EntityPlayer.cs startLine: 34 @@ -378,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: DeathReason path: Common/Entity/EntityPlayer.cs startLine: 39 @@ -407,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CameraPos path: Common/Entity/EntityPlayer.cs startLine: 44 @@ -436,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WalkYaw path: Common/Entity/EntityPlayer.cs startLine: 49 @@ -465,8 +466,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WalkPitch path: Common/Entity/EntityPlayer.cs startLine: 53 @@ -494,8 +495,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnFootStep path: Common/Entity/EntityPlayer.cs startLine: 58 @@ -523,8 +524,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnImpact path: Common/Entity/EntityPlayer.cs startLine: 63 @@ -552,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCanSpawnNearby path: Common/Entity/EntityPlayer.cs startLine: 68 @@ -581,8 +582,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: talkUtil path: Common/Entity/EntityPlayer.cs startLine: 70 @@ -608,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BodyYawLimits path: Common/Entity/EntityPlayer.cs startLine: 71 @@ -635,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HeadYawLimits path: Common/Entity/EntityPlayer.cs startLine: 72 @@ -662,8 +663,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: entityListForPartitioning path: Common/Entity/EntityPlayer.cs startLine: 77 @@ -691,8 +692,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: walkSpeed path: Common/Entity/EntityPlayer.cs startLine: 81 @@ -720,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: BodyYaw path: Common/Entity/EntityPlayer.cs startLine: 86 @@ -752,8 +753,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LastReviveTotalHours path: Common/Entity/EntityPlayer.cs startLine: 103 @@ -781,8 +782,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UpdatePartitioning path: Common/Entity/EntityPlayer.cs startLine: 120 @@ -807,8 +808,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StoreWithChunk path: Common/Entity/EntityPlayer.cs startLine: 126 @@ -839,8 +840,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlayerUID path: Common/Entity/EntityPlayer.cs startLine: 135 @@ -870,8 +871,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RightHandItemSlot path: Common/Entity/EntityPlayer.cs startLine: 143 @@ -902,8 +903,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LeftHandItemSlot path: Common/Entity/EntityPlayer.cs startLine: 155 @@ -934,8 +935,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GearInventory path: Common/Entity/EntityPlayer.cs startLine: 167 @@ -966,8 +967,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LightHsv path: Common/Entity/EntityPlayer.cs startLine: 180 @@ -998,8 +999,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AlwaysActive path: Common/Entity/EntityPlayer.cs startLine: 230 @@ -1030,8 +1031,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShouldDespawn path: Common/Entity/EntityPlayer.cs startLine: 235 @@ -1062,8 +1063,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/EntityPlayer.cs startLine: 248 @@ -1094,8 +1095,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LadderFixDelta path: Common/Entity/EntityPlayer.cs startLine: 257 @@ -1126,8 +1127,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Player path: Common/Entity/EntityPlayer.cs startLine: 262 @@ -1157,8 +1158,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: selfNowShadowPass path: Common/Entity/EntityPlayer.cs startLine: 273 @@ -1184,8 +1185,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: AnimManager path: Common/Entity/EntityPlayer.cs startLine: 275 @@ -1219,8 +1220,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OtherAnimManager path: Common/Entity/EntityPlayer.cs startLine: 290 @@ -1248,8 +1249,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TpAnimManager path: Common/Entity/EntityPlayer.cs startLine: 304 @@ -1277,8 +1278,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityPlayer.cs startLine: 306 @@ -1306,8 +1307,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityPlayer.cs startLine: 345 @@ -1347,8 +1348,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PrevFrameCanStandUp path: Common/Entity/EntityPlayer.cs startLine: 378 @@ -1374,8 +1375,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: selfClimateCond path: Common/Entity/EntityPlayer.cs startLine: 379 @@ -1401,8 +1402,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetWalkSpeedMultiplier path: Common/Entity/EntityPlayer.cs startLine: 382 @@ -1439,8 +1440,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnSelfBeforeRender path: Common/Entity/EntityPlayer.cs startLine: 408 @@ -1471,11 +1472,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Entity/EntityPlayer.cs - startLine: 414 + startLine: 415 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1510,11 +1511,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetInsideTorsoBlockSoundSource path: Common/Entity/EntityPlayer.cs - startLine: 550 + startLine: 551 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1541,11 +1542,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetInsideLegsBlockSoundSource path: Common/Entity/EntityPlayer.cs - startLine: 556 + startLine: 557 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1572,11 +1573,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlayInsideSound path: Common/Entity/EntityPlayer.cs - startLine: 562 + startLine: 563 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1603,11 +1604,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlayStepSound path: Common/Entity/EntityPlayer.cs - startLine: 604 + startLine: 605 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1637,11 +1638,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityPlayer.cs - startLine: 645 + startLine: 646 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1673,11 +1674,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnAsyncParticleTick path: Common/Entity/EntityPlayer.cs - startLine: 681 + startLine: 682 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1709,11 +1710,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: sidewaysSwivelAngle path: Common/Entity/EntityPlayer.cs - startLine: 699 + startLine: 700 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1722,40 +1723,38 @@ items: return: type: System.Single content.vb: Public sidewaysSwivelAngle As Single -- uid: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(System.Single) - commentId: M:Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(System.Single) - id: HandleHandAnimations(System.Single) +- uid: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(System.Single) + commentId: M:Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(System.Single) + id: HandleSeraphHandAnimations(System.Single) parent: Vintagestory.API.Common.EntityPlayer langs: - csharp - vb - name: HandleHandAnimations(float) - nameWithType: EntityPlayer.HandleHandAnimations(float) - fullName: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(float) + name: HandleSeraphHandAnimations(float) + nameWithType: EntityPlayer.HandleSeraphHandAnimations(float) + fullName: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(float) type: Method source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git - id: HandleHandAnimations + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git + id: HandleSeraphHandAnimations path: Common/Entity/EntityPlayer.cs - startLine: 764 + startLine: 765 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common - example: [] syntax: - content: protected override void HandleHandAnimations(float dt) + content: public void HandleSeraphHandAnimations(float dt) parameters: - id: dt type: System.Single - content.vb: Protected Overrides Sub HandleHandAnimations(dt As Single) - overridden: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) - overload: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations* - nameWithType.vb: EntityPlayer.HandleHandAnimations(Single) - fullName.vb: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(Single) - name.vb: HandleHandAnimations(Single) + content.vb: Public Sub HandleSeraphHandAnimations(dt As Single) + overload: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations* + nameWithType.vb: EntityPlayer.HandleSeraphHandAnimations(Single) + fullName.vb: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(Single) + name.vb: HandleSeraphHandAnimations(Single) - uid: Vintagestory.API.Common.EntityPlayer.protectEyesFromWind(System.Single) commentId: M:Vintagestory.API.Common.EntityPlayer.protectEyesFromWind(System.Single) id: protectEyesFromWind(System.Single) @@ -1770,11 +1769,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: protectEyesFromWind path: Common/Entity/EntityPlayer.cs - startLine: 880 + startLine: 893 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1802,11 +1801,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: onAnimControls path: Common/Entity/EntityPlayer.cs - startLine: 925 + startLine: 938 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1842,11 +1841,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: canPlayEdgeSitAnim path: Common/Entity/EntityPlayer.cs - startLine: 980 + startLine: 993 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1870,11 +1869,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CanSpawnNearby path: Common/Entity/EntityPlayer.cs - startLine: 1023 + startLine: 1036 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1905,11 +1904,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnFallToGround path: Common/Entity/EntityPlayer.cs - startLine: 1033 + startLine: 1046 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1941,11 +1940,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetNearestBlockSoundSource path: Common/Entity/EntityPlayer.cs - startLine: 1069 + startLine: 1082 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1988,11 +1987,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: getSoundSourceBlockAt path: Common/Entity/EntityPlayer.cs - startLine: 1116 + startLine: 1129 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2028,11 +2027,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TryGiveItemStack path: Common/Entity/EntityPlayer.cs - startLine: 1140 + startLine: 1153 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2064,11 +2063,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/EntityPlayer.cs - startLine: 1148 + startLine: 1161 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2098,11 +2097,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TryMount path: Common/Entity/EntityPlayer.cs - startLine: 1184 + startLine: 1197 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2134,11 +2133,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Revive path: Common/Entity/EntityPlayer.cs - startLine: 1194 + startLine: 1207 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2163,11 +2162,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: PlayEntitySound path: Common/Entity/EntityPlayer.cs - startLine: 1204 + startLine: 1217 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2208,11 +2207,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: talkTypeByAnimation path: Common/Entity/EntityPlayer.cs - startLine: 1220 + startLine: 1233 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2235,11 +2234,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerPacket path: Common/Entity/EntityPlayer.cs - startLine: 1230 + startLine: 1243 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2279,11 +2278,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedClientPacket path: Common/Entity/EntityPlayer.cs - startLine: 1270 + startLine: 1283 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2321,11 +2320,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/EntityPlayer.cs - startLine: 1288 + startLine: 1301 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2363,11 +2362,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: Ignite path: Common/Entity/EntityPlayer.cs - startLine: 1296 + startLine: 1309 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2391,11 +2390,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnHurt path: Common/Entity/EntityPlayer.cs - startLine: 1305 + startLine: 1318 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2429,11 +2428,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TryStopHandAction path: Common/Entity/EntityPlayer.cs - startLine: 1343 + startLine: 1356 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2470,11 +2469,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: WalkInventory path: Common/Entity/EntityPlayer.cs - startLine: 1366 + startLine: 1379 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2503,11 +2502,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: SetCurrentlyControlledPlayer path: Common/Entity/EntityPlayer.cs - startLine: 1386 + startLine: 1399 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2531,11 +2530,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/EntityPlayer.cs - startLine: 1391 + startLine: 1404 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2560,11 +2559,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TeleportToDouble path: Common/Entity/EntityPlayer.cs - startLine: 1402 + startLine: 1415 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2605,11 +2604,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetName path: Common/Entity/EntityPlayer.cs - startLine: 1452 + startLine: 1465 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2637,11 +2636,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: GetInfoText path: Common/Entity/EntityPlayer.cs - startLine: 1459 + startLine: 1472 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2669,11 +2668,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityPlayer.cs - startLine: 1482 + startLine: 1495 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2708,11 +2707,11 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityPlayer.cs - startLine: 1489 + startLine: 1502 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -3289,24 +3288,36 @@ references: name: IAsyncParticleManager href: Vintagestory.API.Client.IAsyncParticleManager.html - name: ) -- uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - commentId: M:Vintagestory.API.Common.EntityAgent.StopHandAnims +- uid: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) + commentId: M:Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) parent: Vintagestory.API.Common.EntityAgent - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims - name: StopHandAnims() - nameWithType: EntityAgent.StopHandAnims() - fullName: Vintagestory.API.Common.EntityAgent.StopHandAnims() + isExternal: true + href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_HandleHandAnimations_System_Single_ + name: HandleHandAnimations(float) + nameWithType: EntityAgent.HandleHandAnimations(float) + fullName: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(float) + nameWithType.vb: EntityAgent.HandleHandAnimations(Single) + fullName.vb: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(Single) + name.vb: HandleHandAnimations(Single) spec.csharp: - - uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - name: StopHandAnims - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims + - uid: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) + name: HandleHandAnimations + href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_HandleHandAnimations_System_Single_ - name: ( + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - name: StopHandAnims - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims + - uid: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) + name: HandleHandAnimations + href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_HandleHandAnimations_System_Single_ - name: ( + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single - name: ) - uid: Vintagestory.API.Common.EntityAgent.insideBlock commentId: F:Vintagestory.API.Common.EntityAgent.insideBlock @@ -5232,6 +5243,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + commentId: M:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + parent: Vintagestory.API.Common.Entities.Entity + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes() + nameWithType: Entity.UpdateAnimationDebugAttributes() + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes() + spec.csharp: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) + spec.vb: + - uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes + href: Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + - name: ( + - name: ) - uid: Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) commentId: M:Vintagestory.API.Common.Entities.Entity.FromBytes(System.IO.BinaryReader,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String}) parent: Vintagestory.API.Common.Entities.Entity @@ -7535,43 +7565,12 @@ references: - uid: Vintagestory.API.Client name: Client href: Vintagestory.API.Client.html -- uid: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) - commentId: M:Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) - parent: Vintagestory.API.Common.EntityAgent - isExternal: true - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_HandleHandAnimations_System_Single_ - name: HandleHandAnimations(float) - nameWithType: EntityAgent.HandleHandAnimations(float) - fullName: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(float) - nameWithType.vb: EntityAgent.HandleHandAnimations(Single) - fullName.vb: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(Single) - name.vb: HandleHandAnimations(Single) - spec.csharp: - - uid: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) - name: HandleHandAnimations - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_HandleHandAnimations_System_Single_ - - name: ( - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) - spec.vb: - - uid: Vintagestory.API.Common.EntityAgent.HandleHandAnimations(System.Single) - name: HandleHandAnimations - href: Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_HandleHandAnimations_System_Single_ - - name: ( - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) -- uid: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations* - commentId: Overload:Vintagestory.API.Common.EntityPlayer.HandleHandAnimations - href: Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_HandleHandAnimations_System_Single_ - name: HandleHandAnimations - nameWithType: EntityPlayer.HandleHandAnimations - fullName: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations +- uid: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations* + commentId: Overload:Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations + href: Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_HandleSeraphHandAnimations_System_Single_ + name: HandleSeraphHandAnimations + nameWithType: EntityPlayer.HandleSeraphHandAnimations + fullName: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations - uid: Vintagestory.API.Common.EntityPlayer.protectEyesFromWind* commentId: Overload:Vintagestory.API.Common.EntityPlayer.protectEyesFromWind href: Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_protectEyesFromWind_System_Single_ diff --git a/api/Vintagestory.API.Common.EntitySelection.yml b/api/Vintagestory.API.Common.EntitySelection.yml index c23dab98..009a6af8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c252f61c..d36f146b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 14409a9b..4c2080ad 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a678d2c3..1ffb5206 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 20b46532..f3e07749 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b2bcca26..1672c2fc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e1d8d814..10a82bcb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5977c57f..180d5e43 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b84c848e..9bcc9d3d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 62872c14..d92d5824 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 67ce82e5..cdbc0463 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d7b118fb..23ac80d1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 221c42b6..28378107 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 22f9fd2e..81ec26b9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cb6fbcac..a08131a1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e1093635..6c4e2df1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7b215eae..b2008289 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1a694e3b..0ced7b0f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3bebdd55..4c2ec2d3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 36113a88..91ec2f91 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c41f77f1..d042442f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cfe2cefa..3bc6a6f3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1518a298..e73ea381 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7dce4bc1..726122f6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 11fd550f..8fc4da62 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9ae726ae..11c60ab3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 61702ae6..59f75d64 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a4254110..ffb8ba52 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1a7cf072..80c8840d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2f7018a3..ee2f58f4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 98ca43a3..b04adbcd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c8c412ae..9bc0d080 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3e32f817..80e5fffb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fb7fd815..0f1ac316 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 df5cb1fa..6e13e488 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5e430ad1..82617f03 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5a30dfde..b6914599 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5f05149b..50aab48a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ec24b7e9..50aa51cf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6d343d88..3ed6ad20 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a15b2d24..53a4e038 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fcc6be01..a8aa2aa6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e99286d1..64b05752 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0ac43d00..2fd17cc8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a9a7658b..bf54925a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c96d46b5..9e3c224f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 116d079e..81251453 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d0c7b13f..facabe95 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 eff7e9fe..baf66abe 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 59bd9e0e..837e6b94 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5b151f95..e3859089 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f2409f7d..0c9619ef 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 86bf46c8..b5564337 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0757750d..4475bc75 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 de0d11ea..4d644d06 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3340b3f8..10b5deea 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fe518af6..4845d769 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 81f08ea9..96e8c378 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fc6521db..a4e73307 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b0afa45b..7ffaadec 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1c92a803..ae78602e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f35cb04b..c721db9d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 31e7b5d8..4ef88fc3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7f29efa3..b8bea467 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dfefd034..625978d0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 098590b4..e929b6c6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b07c21b3..e6b21a9f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fb96cf5d..9e540599 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7cfb6c7c..aa52d953 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 053caa83..1ea24690 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b2c9ef9b..9fb72e65 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bcfecc97..cbc6b0eb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d1525bab..8f149512 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 196e2d96..f211229c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1eef946b..6f58325f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6a6fd052..01829ff0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 69dfe0d8..3718691b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6e62c3ce..72a26e94 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3634082c..3309a20a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e942dfd9..ac00def6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5fbd1cbd..838494fb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1c8ee125..2686e34e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 04a5d6fd..e4de36af 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 01c84339..52ae4c4b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 39270ef0..5a609d10 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 44f97395..bf7c9f69 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9d151224..5d7c86c2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8af903f0..4f40df5b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0ee662fc..3c5a3051 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8208d397..cb1ba6ce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bfeaa99b..3f4c58e6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 598a709e..8b770967 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 403972a4..f609dde2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0eaebeda..0fa297ef 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 368907ca..13e32e21 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0f7940a5..9ac5f7ce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 52663b2c..93d1d236 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4ba1a831..bb3bd295 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 db6f5b82..1da76927 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 52491413..bf0d8dd4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b8e36ce5..f19f2958 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a32b7004..c14fd133 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 db9037d9..fc39ecc9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 553c4402..afafdef4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1d25f975..b2f56ace 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2e8192ea..6ebb46ca 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 296fc454..2bd40690 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 99e27e3a..4e41c836 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4dd3f21f..1ea0c5bd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 05fadf2b..5c73e467 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 188afe3c..dda182d6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 21517d1c..96df5172 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 236e460b..76a6846a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d6245255..41f9d49e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 47f9572f..b1c55cb9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b772993a..97f1653f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8c1ed226..50b4994b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dadc4ea8..b1e211c7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8a785f96..ce23b3ef 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fc1d18b4..8d1ffe48 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 60706384..32480b8a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 44cd75d2..a75be3d5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9da05c93..9ac3ad12 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1d11d1d0..8fd4756d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7fcf9ec6..dc7655c5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 79f34656..987ad713 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 796599f6..460d66ad 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 58f0680a..1be55585 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 30c0d208..98486a29 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b376dbf4..94b735bf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b0e09317..c0e70fd3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b6ffbe97..0f819b30 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5c10ef75..ee2f395e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4a0846f4..1f647953 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b86431bf..78d5ae69 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 566b9c38..850994dc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 339998f2..818daaca 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IEventAPI.cs startLine: 191 @@ -644,11 +644,11 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IEventAPI.cs - startLine: 200 + startLine: 201 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -668,6 +668,7 @@ items: description: '' - id: permittedWhilePaused type: System.Boolean + description: '' return: type: System.Int64 description: listenerId @@ -690,11 +691,11 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IEventAPI.cs - startLine: 209 + startLine: 210 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -734,11 +735,11 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UnregisterCallback path: Common/API/IEventAPI.cs - startLine: 216 + startLine: 217 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -769,11 +770,11 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UnregisterGameTickListener path: Common/API/IEventAPI.cs - startLine: 223 + startLine: 224 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -804,11 +805,11 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EnqueueMainThreadTask path: Common/API/IEventAPI.cs - startLine: 231 + startLine: 232 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -842,11 +843,11 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TriggerEntityDeath path: Common/API/IEventAPI.cs - startLine: 233 + startLine: 234 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -873,11 +874,11 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: TriggerMatchesRecipe path: Common/API/IEventAPI.cs - startLine: 234 + startLine: 235 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common diff --git a/api/Vintagestory.API.Common.IFarmlandBlockEntity.yml b/api/Vintagestory.API.Common.IFarmlandBlockEntity.yml index 90cbec4f..38d3749c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 276b2897..d1c68587 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0e63b0b7..fa098a61 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 aad984c9..8c508149 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0c415dea..7327d18f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c0b77eb7..de8e5659 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 87d1ed08..d0384ff8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 49466fb5..1576aff6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9bdb6b02..7f39a04a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 33d7e060..46ea8d92 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 02754363..84bd190b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 259c7263..3ea986b4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 08dab0b2..2d2f433b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4a377d91..f9697149 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2251ded4..6afca262 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7ebb2b75..52597f82 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a645c38c..49de1b0a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7e015c9f..8092d931 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9cc0af30..d1149b04 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 66844d0e..86348ffa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 64666245..af2566be 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 85cba3af..a09a4a07 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 96620413..f193279d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3697590f..37f77ea4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fb3a0270..1dbba461 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f31bb307..d5e0b833 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a81f53b1..ec8d7500 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c50b9464..04d1b686 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4dcf254a..a9e06eab 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 981ed1ce..59fd2a9b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8c49c3d0..e82c9034 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 809f2643..10ba2405 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 57f2507b..3153398d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 18cd4c11..d6a1fb05 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 052dbb88..a3419bbb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 87b25f96..095913d1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3cd2dabf..9dbeb1cf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8175f84e..d767e476 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8423b865..a8297fea 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c78503ed..b9514b7c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ec8577f8..1adbc2c2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e8edb864..5595f43c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 45e7ad92..1392e538 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 38cedd7f..7aed3933 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cc1ae3ca..dc1b6a2a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 37006fe2..9c71fd93 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f8166586..9898f204 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c740fbbb..d797724c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5343c8e7..c5053dd6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5b992945..55a2a3b1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bfb2bcaa..c2a9823f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e8057ce6..7bef6ffb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5e963106..b771ac3d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9248060a..a9608408 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f369c386..0a8ef384 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3db62e2b..0527d819 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f3c811b5..5bbe34a7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 57b38618..e794eab7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ecfde344..7db1b480 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8237a17f..15ca21d7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4aa2a5ab..7a606329 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7b5742f2..486d1dca 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6dae9170..4defaeb6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e4e79d25..b9938fa2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5109b7b1..2f483d10 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5882eaf2..7704d378 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f22c7b47..524048a5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 200a7e4f..8855bb69 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 93ff902f..a9b408b8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e2d0bea6..d840befa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fae7b219..fc2905ce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 42d62e1a..ee30ecfb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 08ad3683..ff9424f7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d251d532..354bb48a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e0558c85..bed42e26 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4f2711f1..fe3c2b0f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 30aae984..1b8089cf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 44197ed4..ea8f6ce6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 00b8c440..14062e63 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0ad4662e..f232125f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f16b6653..2a5fde1c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cd03e0fe..feb1bdec 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 04ff3877..43a8658b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e6cc97ac..635b7c10 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0c450c94..a072d978 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 40ba2974..721c5f27 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d60d6bbc..f79ab884 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6c5e5961..de670a43 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 38c25479..5c5682ee 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 85dab9d8..26bd7c1c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 aacba6e7..c25401b4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 10d08b46..6c738877 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 59f0e582..a35db9fd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f19c3e3a..a207e7fe 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3ab95505..2611f0c7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8ea77d04..6d4fdd05 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dc2780f2..03fb6277 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7497258b..835b1093 100644 --- a/api/Vintagestory.API.Common.PlayerAnimationManager.yml +++ b/api/Vintagestory.API.Common.PlayerAnimationManager.yml @@ -11,9 +11,9 @@ items: - Vintagestory.API.Common.PlayerAnimationManager.HeldUseAnimChanged(System.String) - Vintagestory.API.Common.PlayerAnimationManager.Init(Vintagestory.API.Common.ICoreAPI,Vintagestory.API.Common.Entities.Entity) - Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActive(System.String[]) - - Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String) - - Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String) - - Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive + - Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String,System.Single) + - Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String,System.Single) + - Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(System.Single) - Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitAuthorative - Vintagestory.API.Common.PlayerAnimationManager.IsHeldUseActive - Vintagestory.API.Common.PlayerAnimationManager.IsLeftHeldActive @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsAnimationActive path: Common/Entity/PlayerAnimationManager.cs startLine: 103 @@ -445,22 +445,22 @@ items: nameWithType.vb: PlayerAnimationManager.IsAnimationActive(ParamArray String()) fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActive(ParamArray String()) name.vb: IsAnimationActive(ParamArray String()) -- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String) - commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String) - id: IsAnimationActiveOrRunning(System.String) +- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String,System.Single) + commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String,System.Single) + id: IsAnimationActiveOrRunning(System.String,System.Single) parent: Vintagestory.API.Common.PlayerAnimationManager langs: - csharp - vb - name: IsAnimationActiveOrRunning(string) - nameWithType: PlayerAnimationManager.IsAnimationActiveOrRunning(string) - fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(string) + name: IsAnimationActiveOrRunning(string, float) + nameWithType: PlayerAnimationManager.IsAnimationActiveOrRunning(string, float) + fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(string, float) type: Method source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsAnimationActiveOrRunning path: Common/Entity/PlayerAnimationManager.cs startLine: 116 @@ -468,33 +468,35 @@ items: - VintagestoryAPI namespace: Vintagestory.API.Common syntax: - content: public bool IsAnimationActiveOrRunning(string anim) + content: public bool IsAnimationActiveOrRunning(string anim, float untilProgress = 0.95) parameters: - id: anim type: System.String + - id: untilProgress + type: System.Single return: type: System.Boolean - content.vb: Public Function IsAnimationActiveOrRunning(anim As String) As Boolean + content.vb: Public Function IsAnimationActiveOrRunning(anim As String, untilProgress As Single = 0.95) As Boolean overload: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning* - nameWithType.vb: PlayerAnimationManager.IsAnimationActiveOrRunning(String) - fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(String) - name.vb: IsAnimationActiveOrRunning(String) -- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String) - commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String) - id: IsAnimationMostlyRunning(System.String) + nameWithType.vb: PlayerAnimationManager.IsAnimationActiveOrRunning(String, Single) + fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(String, Single) + name.vb: IsAnimationActiveOrRunning(String, Single) +- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String,System.Single) + commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String,System.Single) + id: IsAnimationMostlyRunning(System.String,System.Single) parent: Vintagestory.API.Common.PlayerAnimationManager langs: - csharp - vb - name: IsAnimationMostlyRunning(string) - nameWithType: PlayerAnimationManager.IsAnimationMostlyRunning(string) - fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(string) + name: IsAnimationMostlyRunning(string, float) + nameWithType: PlayerAnimationManager.IsAnimationMostlyRunning(string, float) + fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(string, float) type: Method source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsAnimationMostlyRunning path: Common/Entity/PlayerAnimationManager.cs startLine: 122 @@ -502,17 +504,19 @@ items: - VintagestoryAPI namespace: Vintagestory.API.Common syntax: - content: protected bool IsAnimationMostlyRunning(string anim) + content: protected bool IsAnimationMostlyRunning(string anim, float untilProgress = 0.95) parameters: - id: anim type: System.String + - id: untilProgress + type: System.Single return: type: System.Boolean - content.vb: Protected Function IsAnimationMostlyRunning(anim As String) As Boolean + content.vb: Protected Function IsAnimationMostlyRunning(anim As String, untilProgress As Single = 0.95) As Boolean overload: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning* - nameWithType.vb: PlayerAnimationManager.IsAnimationMostlyRunning(String) - fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(String) - name.vb: IsAnimationMostlyRunning(String) + nameWithType.vb: PlayerAnimationManager.IsAnimationMostlyRunning(String, Single) + fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(String, Single) + name.vb: IsAnimationMostlyRunning(String, Single) - uid: Vintagestory.API.Common.PlayerAnimationManager.onReceivedServerAnimation(Vintagestory.API.Common.AnimationMetaData) commentId: M:Vintagestory.API.Common.PlayerAnimationManager.onReceivedServerAnimation(Vintagestory.API.Common.AnimationMetaData) id: onReceivedServerAnimation(Vintagestory.API.Common.AnimationMetaData) @@ -527,8 +531,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: onReceivedServerAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 128 @@ -558,8 +562,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/PlayerAnimationManager.cs startLine: 133 @@ -600,8 +604,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: lastActiveHeldReadyAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 139 @@ -627,8 +631,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: lastActiveRightHeldIdleAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 140 @@ -654,8 +658,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: lastActiveLeftHeldIdleAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 141 @@ -681,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: lastActiveHeldHitAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 143 @@ -708,8 +712,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: lastActiveHeldUseAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 144 @@ -735,8 +739,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: lastRunningHeldHitAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 146 @@ -762,8 +766,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: lastRunningHeldUseAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 147 @@ -789,8 +793,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OnActiveSlotChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 149 @@ -818,8 +822,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartHeldReadyAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 159 @@ -852,8 +856,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartHeldUseAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 172 @@ -884,8 +888,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartHeldHitAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 182 @@ -916,8 +920,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartRightHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 192 @@ -948,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartLeftHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 201 @@ -980,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopHeldReadyAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 210 @@ -1006,8 +1010,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopHeldUseAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 220 @@ -1032,8 +1036,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopHeldAttackAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 226 @@ -1058,8 +1062,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopRightHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 240 @@ -1084,8 +1088,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StopLeftHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 245 @@ -1110,8 +1114,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsHeldHitAuthorative path: Common/Entity/PlayerAnimationManager.cs startLine: 252 @@ -1138,8 +1142,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsHeldUseActive path: Common/Entity/PlayerAnimationManager.cs startLine: 268 @@ -1152,22 +1156,22 @@ items: type: System.Boolean content.vb: Public Function IsHeldUseActive() As Boolean overload: Vintagestory.API.Common.PlayerAnimationManager.IsHeldUseActive* -- uid: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive - commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive - id: IsHeldHitActive +- uid: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(System.Single) + commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(System.Single) + id: IsHeldHitActive(System.Single) parent: Vintagestory.API.Common.PlayerAnimationManager langs: - csharp - vb - name: IsHeldHitActive() - nameWithType: PlayerAnimationManager.IsHeldHitActive() - fullName: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive() + name: IsHeldHitActive(float) + nameWithType: PlayerAnimationManager.IsHeldHitActive(float) + fullName: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(float) type: Method source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsHeldHitActive path: Common/Entity/PlayerAnimationManager.cs startLine: 273 @@ -1175,11 +1179,17 @@ items: - VintagestoryAPI namespace: Vintagestory.API.Common syntax: - content: public bool IsHeldHitActive() + content: public bool IsHeldHitActive(float untilProgress = 0.95) + parameters: + - id: untilProgress + type: System.Single return: type: System.Boolean - content.vb: Public Function IsHeldHitActive() As Boolean + content.vb: Public Function IsHeldHitActive(untilProgress As Single = 0.95) As Boolean overload: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive* + nameWithType.vb: PlayerAnimationManager.IsHeldHitActive(Single) + fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(Single) + name.vb: IsHeldHitActive(Single) - uid: Vintagestory.API.Common.PlayerAnimationManager.IsLeftHeldActive commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsLeftHeldActive id: IsLeftHeldActive @@ -1194,8 +1204,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsLeftHeldActive path: Common/Entity/PlayerAnimationManager.cs startLine: 278 @@ -1222,8 +1232,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsRightHeldActive path: Common/Entity/PlayerAnimationManager.cs startLine: 283 @@ -1250,8 +1260,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IsRightHeldReadyActive path: Common/Entity/PlayerAnimationManager.cs startLine: 288 @@ -1278,8 +1288,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HeldRightReadyAnimChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 293 @@ -1312,8 +1322,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HeldUseAnimChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 298 @@ -1346,8 +1356,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: HeldHitAnimChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 303 @@ -1380,8 +1390,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RightHeldIdleChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 308 @@ -1414,8 +1424,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: LeftHeldIdleChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 313 @@ -1448,8 +1458,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FromAttributes path: Common/Entity/PlayerAnimationManager.cs startLine: 319 @@ -1487,8 +1497,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToAttributes path: Common/Entity/PlayerAnimationManager.cs startLine: 332 @@ -2359,13 +2369,13 @@ references: - name: ) - uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning* commentId: Overload:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning - href: Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationActiveOrRunning_System_String_ + href: Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationActiveOrRunning_System_String_System_Single_ name: IsAnimationActiveOrRunning nameWithType: PlayerAnimationManager.IsAnimationActiveOrRunning fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning - uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning* commentId: Overload:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning - href: Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationMostlyRunning_System_String_ + href: Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationMostlyRunning_System_String_System_Single_ name: IsAnimationMostlyRunning nameWithType: PlayerAnimationManager.IsAnimationMostlyRunning fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning @@ -2613,7 +2623,7 @@ references: fullName: Vintagestory.API.Common.PlayerAnimationManager.IsHeldUseActive - uid: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive* commentId: Overload:Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive - href: Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsHeldHitActive + href: Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsHeldHitActive_System_Single_ name: IsHeldHitActive nameWithType: PlayerAnimationManager.IsHeldHitActive fullName: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive diff --git a/api/Vintagestory.API.Common.PlayerChatDelegate.yml b/api/Vintagestory.API.Common.PlayerChatDelegate.yml index 6635ae42..a7b861cb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bae8100b..803f7a95 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ccaffe32..c0ab6040 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0c285380..d7343306 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1097c01b..76909b83 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 95ed755e..8f8fe355 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5e423905..a74c9f2f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6de6b8c5..14bb9829 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 38925816..c1fba3f1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ba710a6f..f52ba32a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d658a6b4..9d48fe5b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9c213868..c473cbe2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 40930a92..bc5c41ff 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 205b30f9..bac123f7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cdebf38a..0a3e5595 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 189730a3..2457f562 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ea9fcdca..5aaf39c5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ddf19746..2372da7d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9967711c..2f3057fa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 611915cf..83b59cac 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7ccd9a1b..99f8d5f9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 855d045c..c7a6180d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ebd49954..0516e613 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 152eb3eb..29a8f6cf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 efcc01e7..6391b3a6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 75ab77af..fe61783c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2d2960f8..1ead5a51 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7ff34303..e7e6da63 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 40fe15da..59b1bf82 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f27d9a94..4911f861 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 765203c6..3d056997 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f71891aa..ad35ac43 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a1d2e45b..5e5bcad3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4440ca52..46a52883 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c1a31181..d010fa57 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dd6264d5..53e88e6b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8995acaf..3d9e6100 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2d66da1b..2a2c7a13 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fc142c34..99bc2d26 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2b6a8d9e..b128581f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8cccf9ce..c899d3fd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e20b546b..b789decc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f2c9f72a..aad2f9fc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 630814f6..ca89b025 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d8c4c7cb..224db6b2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 91cd5d25..64c8c23d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 194ac82b..47d02c37 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 819e04a0..926cbaab 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 26f9f86f..7add58c0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 10acc772..61aacec2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ecf5117f..732eaf79 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 465472f3..3db22b7a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5514d695..af2fa27c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 21db6489..4ce9ea55 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 920da8fd..e5b6bde2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8776abcd..694a1f98 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 007e6709..12db8e84 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 61f8b4cc..25d6ceef 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4b2bda3e..711d4644 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ab26679d..8158e8c3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9147ccee..cebcc27a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5fb16bab..fab96907 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 070d6ca4..4322bc7e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 af02a700..f35ca660 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 352df51a..861e1b09 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5b45747b..7e50fc2a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 175f9cae..96ac5796 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9718b4bd..19ebd48c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 74446bdb..715072e7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d040f1ab..46857ae4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 eea9a9ce..932b3ca4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d3259541..b1fb86cd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9ff47117..90d0d3d9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 143b657d..4cc10668 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 218faaa2..34ae2ca4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d9103168..81b51432 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1108acad..1076fc8b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0bb5767c..b7aae299 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 134da5bc..c9723263 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: OverallVersion path: Config/GameVersion.cs startLine: 33 @@ -85,10 +85,10 @@ items: summary: 'Assembly Info Version number in the format: major.minor.revision' example: [] syntax: - content: public const string OverallVersion = "1.19.4" + content: public const string OverallVersion = "1.19.5" return: type: System.String - content.vb: Public Const OverallVersion As String = "1.19.4" + content.vb: Public Const OverallVersion As String = "1.19.5" - uid: Vintagestory.API.Config.GameVersion.Branch commentId: F:Vintagestory.API.Config.GameVersion.Branch id: Branch @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 = Stable + content: public const EnumGameBranch Branch = Unstable return: type: Vintagestory.API.Config.EnumGameBranch - content.vb: Public Const Branch As EnumGameBranch = Stable + content.vb: Public Const Branch As EnumGameBranch = Unstable - 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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" + content: public const string ShortGameVersion = "1.19.5-rc.1" return: type: System.String - content.vb: Public Const ShortGameVersion As String = "1.19.4" + content.vb: Public Const ShortGameVersion As String = "1.19.5-rc.1" - 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9ec591c8..d3460979 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ba1935e6..8263296e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bc3b587a..757652b7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6a26992c..de243741 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3a238e8c..61305edd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7c033c6a..f2f944ce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dc9c8053..5d740db5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 459a840f..f3984909 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7452b1bb..c5f123f2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a2187870..8b33f157 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 812f529b..ff6fba89 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dd2aed32..25149b50 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 459fa158..a6f14111 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bfac8f86..5413aff4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fda0b6d3..0acb03e2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b16799e7..9fd2f6a1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4cdecd01..6824687f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7a27e8af..bb08778a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 16d7b100..8247c2fa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0d1320f3..5201a3f5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cf59bd8e..32b0b604 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fe9b598b..cc8c394e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a0619eea..fa8b715c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0fc320f7..c79f2b42 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fd5bc355..599d477e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b7215856..2adca4eb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d7d4fe59..4c108e86 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a2d483e2..c1b041ee 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 97281465..072bf945 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8185b264..8df0e49b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 381a5f39..d4bbd020 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f09f7644..59cbf04a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 33855f28..1cb29a87 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 16f65a8a..a843b8b6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a63b3b0e..cba56fee 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a9b48579..f636db6d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 46a0e580..403ed09e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6ba29599..e70fe602 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 815082bd..d60b03a5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 075f9353..6bd4054b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ab44b7e0..42b23bae 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9b9670ff..b8cb63f1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dd8ce37f..73b5c69b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b45031ca..50a86d06 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 12ddfe9f..0d8bd164 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 735a518b..99c4e3e1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ae42d5c4..ede28515 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 211b234b..e5ebd22b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cdb3fa39..7203da49 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 30c66503..0c25863d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 450bcaa2..acbf35af 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4a5b2ab7..320cf848 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2e87f8d8..0cf3f55f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 36f67dfc..05724b81 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7abf3dad..b4e5603e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6df0a9b9..1c0f51fa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 596fcd0e..90758a6b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7ddc2fe7..a29634b0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8896d1ff..80df569b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 82167615..7ab3fdc0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6a90cb12..e6c5b7d7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 928ea94a..009ea883 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 317e1dfb..8895b8f7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 87ab9ae4..c9328645 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 accdc95c..86dc0d84 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 17e8351c..e3b6b7ae 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 82c6d904..677b33a7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5d5606f4..a151aac2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c276185f..f482d2bf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 58e1ed6c..da08d830 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7164661c..7fbb7adc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2110921f..cf64a38d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5a09d53f..f003e7a9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 398bccfc..f948c3f3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0cfaade2..e2db65f2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 da4594c1..fb507508 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 05b4956a..56a0a50d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ad9ef5f5..9197f3e3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 79f5f62d..856d57dd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9852ddb6..3b39ab6f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 dbdcaae8..36c0dbce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 832ea1c3..7620b5ce 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8b532d54..fd863ee0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cd31e4c8..11507096 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fa06605e..3929e8db 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e42bef6b..b484dd25 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 29b3a0a1..04420396 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 61cdd89b..b1368762 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c06ba90a..1d020471 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 08a79f5c..811bcaa2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b85a8a92..b14284ca 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 313036aa..7379a9d4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 48242d69..c7a52515 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 68c4d2e7..7fc5114f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5072cabc..e7c89296 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4a49bd39..46300ebf 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cd339124..e9976948 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1f5103d0..94c3d023 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4f78d911..419d298c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4e9ce690..11ec7ba1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d13943e5..bd49ad50 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ba960232..aa3651ee 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a2290ac1..08c1cf38 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9db16b46..10f423ea 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e13ac98c..92e072e1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 912ec848..0bab72f7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 51cbc161..b4914377 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4e9dfe88..efa6f043 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1b8611a8..f424dc94 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7a5fcd3d..88e20393 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e49b0cdb..6d927728 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6d955d58..b6ab50a8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b3a725a1..29dc0f1d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8492b2a1..bbe3558c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a38145d3..f5cec476 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2ff658a7..b6b2b5df 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 13823c34..5b3c20c6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 818103f5..715c9e40 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e2a9a067..b2d2afc4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a5383636..744277fe 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7a168e37..5a9122f1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2a6053d6..8676f19a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3db35377..d70542b2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6d791c76..dc096486 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fd30c262..7780cfa5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 81a071f6..bb631921 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b75d0de3..e6e8b67e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b412f117..ea1ca9c2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 48bf3942..f5888ca0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ea455798..b2dbdcf3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5fb110a6..b0a6b7f9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f4b71b3e..62819dd5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 59895ce5..3715621f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 88543782..59ec3019 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ca650cc3..3dfafd71 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1f674248..bcb0b0b2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 40d6437e..6c711979 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 608abf0e..e7dbf149 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f10b7a9a..53d71eb3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6500b7f7..eba830ee 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d89513e7..db2c6344 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 104228d0..2ca475c9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a42eccc8..ff1a943e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a55d9fad..4fe4bd22 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 10153da2..091c711e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 536cd4a4..47cd6981 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ce540af6..14727ec8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d674c598..6723be0a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ce8a7624..ebe2d886 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cd03a13f..4c6263e1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 241ae20e..aab7fe7e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 252ba53e..3fe0d9a6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 aa8e1a7a..a6731ceb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c843da31..cbe45cb5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1b9f9319..95ace974 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 972e7c9a..4b747689 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9f38df3e..0abaed70 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a75a7fd2..df7c5bfb 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 01f094c2..5fa298f8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fc82cf93..bc387917 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 858b2ba0..44c9fd2f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 375f9628..966755f8 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 299ccfab..19e10202 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 540e81d9..be4d1bf4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 37512bdd..84eb9f97 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 33514a24..770af500 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e462daa4..a0ffbd94 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cdf57f33..80a20ca7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e4efa339..814726aa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fe8d89a3..79ff1235 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2aa3d41d..7805fb43 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f9c651c1..5303fa47 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 0376da39..4f55967a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 76689871..7f13198b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4d79ab91..f778698d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6b73ac9f..0b711f49 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 df841ace..89850521 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 b4070e66..6d00f4f2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 882035bd..42af0c98 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ada5c6b8..0652d2f6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 cda60b8c..12b48d46 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7f2efac0..63523f5e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bc6f1958..bfbbfd3d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 aa2b6fab..1673a6fe 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 d563b11b..be7abe0f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fc334b4f..4a27e698 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 732dcfd6..931bd0aa 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a31c4064..532cfdbd 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 ecf4f401..b6886884 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1a37894b..c1dc49b3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3b2274bf..420a404a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 80e6df73..86cebb12 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1ffafef5..55f58a0f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 3977a49d..57cfc39f 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 9e9c3506..6513ff7a 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1f0865bc..22fcdf99 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 388ab7b3..c7ccf427 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 328ada5c..2fe22671 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4bb9c340..18941ed4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8b1252ca..5959f5c2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4cc13c9d..4181a6b9 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 77df3bc3..8350b1a0 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 7f06f21b..92f4cc20 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 608f0f2e..03e827e5 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 f52a1497..9b1cbb4e 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 5eae9961..36b2fe7c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fb474050..b6242379 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 06742534..91036215 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 438a117f..16ec0437 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 62bdaf4d..74337da4 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 4182dd66..98385485 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 81567876..b9b14b29 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1c300839..3c7f8382 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8098a944..9b5a1e01 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 a5689058..2d9984b7 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8820e847..bc90fc23 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 321f1670..043188d6 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 fd60f38e..b95515cc 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 58ddd861..e87b992d 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 6dbaf484..75916db2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 2f949a70..06806af2 100644 --- a/api/Vintagestory.API.Util.StringUtil.yml +++ b/api/Vintagestory.API.Util.StringUtil.yml @@ -12,6 +12,7 @@ items: - Vintagestory.API.Util.StringUtil.EndsWithOrdinal(System.String,System.String) - Vintagestory.API.Util.StringUtil.EqualsFast(System.String,System.String) - Vintagestory.API.Util.StringUtil.FastStartsWith(System.String,System.String,System.Int32) + - Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(System.String) - Vintagestory.API.Util.StringUtil.IndexOfOrdinal(System.String,System.String) - Vintagestory.API.Util.StringUtil.RemoveDiacritics(System.String) - Vintagestory.API.Util.StringUtil.RemoveFileEnding(System.String) @@ -36,11 +37,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StringUtil path: Util/StringUtil.cs - startLine: 8 + startLine: 10 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -57,6 +58,41 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString +- uid: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(System.String) + commentId: M:Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(System.String) + id: GetNonRandomizedHashCode(System.String) + isExtensionMethod: true + parent: Vintagestory.API.Util.StringUtil + langs: + - csharp + - vb + name: GetNonRandomizedHashCode(string) + nameWithType: StringUtil.GetNonRandomizedHashCode(string) + fullName: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(string) + type: Method + source: + remote: + path: VintagestoryApi/Util/StringUtil.cs + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git + id: GetNonRandomizedHashCode + path: Util/StringUtil.cs + startLine: 14 + assemblies: + - VintagestoryAPI + namespace: Vintagestory.API.Util + syntax: + content: public static int GetNonRandomizedHashCode(this string str) + parameters: + - id: str + type: System.String + return: + type: System.Int32 + content.vb: Public Shared Function GetNonRandomizedHashCode(str As String) As Integer + overload: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode* + nameWithType.vb: StringUtil.GetNonRandomizedHashCode(String) + fullName.vb: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(String) + name.vb: GetNonRandomizedHashCode(String) - uid: Vintagestory.API.Util.StringUtil.IndexOfOrdinal(System.String,System.String) commentId: M:Vintagestory.API.Util.StringUtil.IndexOfOrdinal(System.String,System.String) id: IndexOfOrdinal(System.String,System.String) @@ -72,11 +108,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: IndexOfOrdinal path: Util/StringUtil.cs - startLine: 19 + startLine: 55 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -121,11 +157,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartsWithOrdinal path: Util/StringUtil.cs - startLine: 33 + startLine: 69 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -170,11 +206,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EndsWithOrdinal path: Util/StringUtil.cs - startLine: 47 + startLine: 83 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -219,11 +255,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CompareOrdinal path: Util/StringUtil.cs - startLine: 60 + startLine: 96 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -266,11 +302,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: UcFirst path: Util/StringUtil.cs - startLine: 70 + startLine: 106 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -305,11 +341,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToBool path: Util/StringUtil.cs - startLine: 75 + startLine: 111 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -342,11 +378,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RemoveFileEnding path: Util/StringUtil.cs - startLine: 83 + startLine: 119 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -377,11 +413,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToInt path: Util/StringUtil.cs - startLine: 88 + startLine: 124 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -414,11 +450,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToLong path: Util/StringUtil.cs - startLine: 98 + startLine: 134 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -451,11 +487,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToFloat path: Util/StringUtil.cs - startLine: 109 + startLine: 145 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -488,11 +524,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToDouble path: Util/StringUtil.cs - startLine: 119 + startLine: 155 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -525,11 +561,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToDoubleOrNull path: Util/StringUtil.cs - startLine: 129 + startLine: 165 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -562,11 +598,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToFloatOrNull path: Util/StringUtil.cs - startLine: 141 + startLine: 177 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -599,11 +635,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: CountChars path: Util/StringUtil.cs - startLine: 154 + startLine: 190 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -636,11 +672,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ContainsFast path: Util/StringUtil.cs - startLine: 165 + startLine: 201 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -673,11 +709,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ContainsFast path: Util/StringUtil.cs - startLine: 181 + startLine: 217 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -710,11 +746,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartsWithFast path: Util/StringUtil.cs - startLine: 192 + startLine: 228 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -747,11 +783,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: StartsWithFast path: Util/StringUtil.cs - startLine: 206 + startLine: 242 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -786,11 +822,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: EqualsFast path: Util/StringUtil.cs - startLine: 220 + startLine: 256 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -822,11 +858,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: FastStartsWith path: Util/StringUtil.cs - startLine: 233 + startLine: 269 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -861,11 +897,11 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: RemoveDiacritics path: Util/StringUtil.cs - startLine: 247 + startLine: 283 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Util @@ -1149,12 +1185,12 @@ references: name: System nameWithType: System fullName: System -- uid: Vintagestory.API.Util.StringUtil.IndexOfOrdinal* - commentId: Overload:Vintagestory.API.Util.StringUtil.IndexOfOrdinal - href: Vintagestory.API.Util.StringUtil.html#Vintagestory_API_Util_StringUtil_IndexOfOrdinal_System_String_System_String_ - name: IndexOfOrdinal - nameWithType: StringUtil.IndexOfOrdinal - fullName: Vintagestory.API.Util.StringUtil.IndexOfOrdinal +- uid: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode* + commentId: Overload:Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode + href: Vintagestory.API.Util.StringUtil.html#Vintagestory_API_Util_StringUtil_GetNonRandomizedHashCode_System_String_ + name: GetNonRandomizedHashCode + nameWithType: StringUtil.GetNonRandomizedHashCode + fullName: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode - uid: System.String commentId: T:System.String parent: System @@ -1177,6 +1213,12 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: Vintagestory.API.Util.StringUtil.IndexOfOrdinal* + commentId: Overload:Vintagestory.API.Util.StringUtil.IndexOfOrdinal + href: Vintagestory.API.Util.StringUtil.html#Vintagestory_API_Util_StringUtil_IndexOfOrdinal_System_String_System_String_ + name: IndexOfOrdinal + nameWithType: StringUtil.IndexOfOrdinal + fullName: Vintagestory.API.Util.StringUtil.IndexOfOrdinal - uid: Vintagestory.API.Util.StringUtil.StartsWithOrdinal* commentId: Overload:Vintagestory.API.Util.StringUtil.StartsWithOrdinal href: Vintagestory.API.Util.StringUtil.html#Vintagestory_API_Util_StringUtil_StartsWithOrdinal_System_String_System_String_ diff --git a/api/Vintagestory.API.Util.ThreadSafeRandom.yml b/api/Vintagestory.API.Util.ThreadSafeRandom.yml index c7040f6a..c530de6b 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 8e875765..d3f1858c 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 1dfcda0b..77cda576 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 c5117a0b..7e7731e3 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 e22984fa..5a573bf1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 bf21e843..5f1c43c1 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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 95a0c9b3..2ee763b2 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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@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: e450abe5fddf2a92d3eff652939a6754393473f6 - repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + branch: 406623c5a2f17e22ff6c77f3f15f3867fb8c62d4 + repo: https://gitlab-ci-token:64_WTjX-zAYLrR6LAXA56zk@git.striver.net/vintagecraft/game.git id: ToArgb path: Util/SKColorExtensions.cs startLine: 6 diff --git a/docs/api/Vintagestory.API.Client.CairoFont.html b/docs/api/Vintagestory.API.Client.CairoFont.html index 54f2f840..c72174b6 100644 --- a/docs/api/Vintagestory.API.Client.CairoFont.html +++ b/docs/api/Vintagestory.API.Client.CairoFont.html @@ -982,6 +982,43 @@

Returns

+ + +

+ WhiteSmallishText(string) + +

+ +

Creates a white text for smallish dialogs, using the specified base font

+
+
+ +
+
public static CairoFont WhiteSmallishText(string baseFont)
+
+ +

Parameters

+
+
baseFont string
+
+
+ +

Returns

+
+
CairoFont
+
+
+ + + + + + + + + + +

diff --git a/docs/api/Vintagestory.API.Common.Entities.Entity.html b/docs/api/Vintagestory.API.Common.Entities.Entity.html index 9ec95230..46bfa7d0 100644 --- a/docs/api/Vintagestory.API.Common.Entities.Entity.html +++ b/docs/api/Vintagestory.API.Common.Entities.Entity.html @@ -4663,6 +4663,32 @@

Returns

+ + +

+ UpdateAnimationDebugAttributes() + +

+ +
+
+ +
+
protected virtual void UpdateAnimationDebugAttributes()
+
+ + + + + + + + + + + + +

diff --git a/docs/api/Vintagestory.API.Common.EntityAgent.html b/docs/api/Vintagestory.API.Common.EntityAgent.html index 010cc0d2..d98ae415 100644 --- a/docs/api/Vintagestory.API.Common.EntityAgent.html +++ b/docs/api/Vintagestory.API.Common.EntityAgent.html @@ -462,6 +462,9 @@

Entity.SetActivityRunning(string, int) +
+ Entity.UpdateAnimationDebugAttributes() +
Entity.FromBytes(BinaryReader, bool, Dictionary<string, string>)
@@ -1993,32 +1996,6 @@

- -

- StopHandAnims() - -

- -
-
- -
-
public virtual void StopHandAnims()
-
- - - - - - - - - - - - -

diff --git a/docs/api/Vintagestory.API.Common.EntityChunky.html b/docs/api/Vintagestory.API.Common.EntityChunky.html index e41842c5..1c956b23 100644 --- a/docs/api/Vintagestory.API.Common.EntityChunky.html +++ b/docs/api/Vintagestory.API.Common.EntityChunky.html @@ -449,6 +449,9 @@

Entity.SetActivityRunning(string, int) +
+ Entity.UpdateAnimationDebugAttributes() +
Entity.FromBytes(BinaryReader, bool, Dictionary<string, string>)
diff --git a/docs/api/Vintagestory.API.Common.EntityHumanoid.html b/docs/api/Vintagestory.API.Common.EntityHumanoid.html index a63f86f2..8e75e1e7 100644 --- a/docs/api/Vintagestory.API.Common.EntityHumanoid.html +++ b/docs/api/Vintagestory.API.Common.EntityHumanoid.html @@ -237,9 +237,6 @@

EntityAgent.HandleHandAnimations(float) -
- EntityAgent.StopHandAnims() -
EntityAgent.insideBlock
@@ -624,6 +621,9 @@

Entity.SetActivityRunning(string, int) +
+ Entity.UpdateAnimationDebugAttributes() +
Entity.FromBytes(BinaryReader, bool, Dictionary<string, string>)
diff --git a/docs/api/Vintagestory.API.Common.EntityItem.html b/docs/api/Vintagestory.API.Common.EntityItem.html index 88543513..9a9ef68c 100644 --- a/docs/api/Vintagestory.API.Common.EntityItem.html +++ b/docs/api/Vintagestory.API.Common.EntityItem.html @@ -446,6 +446,9 @@

Entity.SetActivityRunning(string, int) +
+ Entity.UpdateAnimationDebugAttributes() +
Entity.FromBytes(BinaryReader, bool, Dictionary<string, string>)
diff --git a/docs/api/Vintagestory.API.Common.EntityPlayer.html b/docs/api/Vintagestory.API.Common.EntityPlayer.html index dec9c3dd..6db9e92a 100644 --- a/docs/api/Vintagestory.API.Common.EntityPlayer.html +++ b/docs/api/Vintagestory.API.Common.EntityPlayer.html @@ -197,7 +197,7 @@

EntityAgent.SpawnFloatingSediment(IAsyncParticleManager)
- EntityAgent.StopHandAnims() + EntityAgent.HandleHandAnimations(float)
EntityAgent.insideBlock @@ -520,6 +520,9 @@

Entity.SetActivityRunning(string, int)

+
+ Entity.UpdateAnimationDebugAttributes() +
Entity.FromBytes(BinaryReader, bool, Dictionary<string, string>)
@@ -2066,10 +2069,10 @@

Returns

- + -

- HandleHandAnimations(float) +

+ HandleSeraphHandAnimations(float)

@@ -2077,7 +2080,7 @@

-
protected override void HandleHandAnimations(float dt)
+
public void HandleSeraphHandAnimations(float dt)

Parameters

diff --git a/docs/api/Vintagestory.API.Common.PlayerAnimationManager.html b/docs/api/Vintagestory.API.Common.PlayerAnimationManager.html index 34757b04..050dd801 100644 --- a/docs/api/Vintagestory.API.Common.PlayerAnimationManager.html +++ b/docs/api/Vintagestory.API.Common.PlayerAnimationManager.html @@ -653,8 +653,8 @@

Returns

-

- IsAnimationActiveOrRunning(string) +

+ IsAnimationActiveOrRunning(string, float)

@@ -662,13 +662,15 @@

-
public bool IsAnimationActiveOrRunning(string anim)
+
public bool IsAnimationActiveOrRunning(string anim, float untilProgress = 0.95)

Parameters

anim string
+
untilProgress float
+

Returns

@@ -689,8 +691,8 @@

Returns

-

- IsAnimationMostlyRunning(string) +

+ IsAnimationMostlyRunning(string, float)

@@ -698,13 +700,15 @@

-
protected bool IsAnimationMostlyRunning(string anim)
+
protected bool IsAnimationMostlyRunning(string anim, float untilProgress = 0.95)

Parameters

anim string
+
untilProgress float
+

Returns

@@ -725,8 +729,8 @@

Returns

-

- IsHeldHitActive() +

+ IsHeldHitActive(float)

@@ -734,9 +738,14 @@

-
public bool IsHeldHitActive()
+
public bool IsHeldHitActive(float untilProgress = 0.95)
+

Parameters

+
+
untilProgress float
+
+

Returns

diff --git a/docs/api/Vintagestory.API.Config.GameVersion.html b/docs/api/Vintagestory.API.Config.GameVersion.html index f2826203..0163c39d 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 = Stable
+
public const EnumGameBranch Branch = Unstable
@@ -443,7 +443,7 @@

-
public const string OverallVersion = "1.19.4"
+
public const string OverallVersion = "1.19.5"
@@ -474,7 +474,7 @@

-
public const string ShortGameVersion = "1.19.4"
+
public const string ShortGameVersion = "1.19.5-rc.1"
diff --git a/docs/api/Vintagestory.API.Util.StringUtil.html b/docs/api/Vintagestory.API.Util.StringUtil.html index 1ddc3794..6d4db0c6 100644 --- a/docs/api/Vintagestory.API.Util.StringUtil.html +++ b/docs/api/Vintagestory.API.Util.StringUtil.html @@ -427,6 +427,42 @@

Returns

+ + +

+ GetNonRandomizedHashCode(string) + +

+ +
+
+ +
+
public static int GetNonRandomizedHashCode(this string str)
+
+ +

Parameters

+
+
str string
+
+
+ +

Returns

+
+
int
+
+
+ + + + + + + + + + +

diff --git a/docs/index.html b/docs/index.html index 32b55f34..84a7f279 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

+

Reference doc for game version 1.19.5-rc.1

diff --git a/docs/index.json b/docs/index.json index 1d08f3cf..e95e0fdf 100644 --- a/docs/index.json +++ b/docs/index.json @@ -127,7 +127,7 @@ "api/Vintagestory.API.Client.CairoFont.html": { "href": "api/Vintagestory.API.Client.CairoFont.html", "title": "Class CairoFont | VintageStory API", - "keywords": "Class CairoFont Namespace Vintagestory.API.Client Assembly VintagestoryAPI.dll Represent a font with sizing and styling for use in rendering text public class CairoFont : FontConfig, IDisposable Inheritance object FontConfig CairoFont Implements IDisposable Inherited Members FontConfig.UnscaledFontsize FontConfig.Fontname FontConfig.FontWeight FontConfig.Color FontConfig.StrokeColor FontConfig.StrokeWidth object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors CairoFont() Creates an empty CairoFont instance. public CairoFont() CairoFont(double, string) Creates a CairoFont object. public CairoFont(double unscaledFontSize, string fontName) Parameters unscaledFontSize double The size of the font before scaling is applied. fontName string The name of the font. CairoFont(double, string, double[], double[]) Creates a CairoFont object public CairoFont(double unscaledFontSize, string fontName, double[] color, double[] strokeColor = null) Parameters unscaledFontSize double The size of the font before scaling is applied. fontName string The name of the font. color double[] The color of the font. strokeColor double[] The color for the stroke of the font. (Default: Null) CairoFont(FontConfig) Creates a pre-populated CairoFont instance. public CairoFont(FontConfig config) Parameters config FontConfig The configuration for the CairoFont Fields FontMeasuringContext The static Context for all Cairo Fonts. public static Context FontMeasuringContext Field Value Context LineHeightMultiplier public double LineHeightMultiplier Field Value double Orientation public EnumTextOrientation Orientation Field Value EnumTextOrientation RenderTwice Whether or not the font is rendered twice. public bool RenderTwice Field Value bool Slant public FontSlant Slant Field Value FontSlant Methods AutoBoxSize(string, ElementBounds, bool) Adjust the bounds so that it fits given text in one line public void AutoBoxSize(string text, ElementBounds bounds, bool onlyGrow = false) Parameters text string The text to adjust bounds ElementBounds The bounds to adjust the text to. onlyGrow bool If true, the box will not be made smaller AutoFontSize(string, ElementBounds, bool) Adjust font size so that it fits given bounds public void AutoFontSize(string text, ElementBounds bounds, bool onlyShrink = true) Parameters text string The text of the object. bounds ElementBounds The bounds of the element where the font is displayed. onlyShrink bool ButtonPressedText() Creates a text preset for when the button is pressed. public static CairoFont ButtonPressedText() Returns CairoFont The text preset for a pressed button. ButtonText() Creates a Button Text preset. public static CairoFont ButtonText() Returns CairoFont The button text preset. Clone() Clone function. Creates a duplicate of this Cairofont. public CairoFont Clone() Returns CairoFont The duplicate font. Dispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. public void Dispose() GetFontExtents() Gets the font's extents. public FontExtents GetFontExtents() Returns FontExtents The FontExtents for this particular font. GetTextExtents(string) Gets the extents of the text. public TextExtents GetTextExtents(string text) Parameters text string The text to extend. Returns TextExtents The Text extends for this font with this text. SetupContext(Context) Sets up the context. Must be executed in the main thread, as it is not thread safe. public void SetupContext(Context ctx) Parameters ctx Context The context to set up the CairoFont with. SmallTextInput() Creates a text oreset for smaller text input fields. public static CairoFont SmallTextInput() Returns CairoFont The smaller text input preset. TextInput() Creates a text preset for text input fields. public static CairoFont TextInput() Returns CairoFont The text field input preset. WhiteDetailText() Creates a white text for details. public static CairoFont WhiteDetailText() Returns CairoFont A white text for details. WhiteMediumText() Creates a white text for medium dialog. public static CairoFont WhiteMediumText() Returns CairoFont The white text for medium dialog. WhiteSmallText() Creates a white text for small dialogs. public static CairoFont WhiteSmallText() Returns CairoFont The white text for small dialogs WhiteSmallishText() Creates a white text for smallish dialogs. public static CairoFont WhiteSmallishText() Returns CairoFont The white text for small dialogs. WithColor(double[]) Sets the color of the CairoFont. public CairoFont WithColor(double[] color) Parameters color double[] The color to set. Returns CairoFont WithFont(string) public CairoFont WithFont(string fontname) Parameters fontname string Returns CairoFont WithFontSize(float) Sets the base size of the CairoFont. public CairoFont WithFontSize(float fontSize) Parameters fontSize float The new font size Returns CairoFont WithLineHeightMultiplier(double) public CairoFont WithLineHeightMultiplier(double lineHeightMul) Parameters lineHeightMul double Returns CairoFont WithOrientation(EnumTextOrientation) public CairoFont WithOrientation(EnumTextOrientation orientation) Parameters orientation EnumTextOrientation Returns CairoFont WithRenderTwice() Sets the font to render twice. public CairoFont WithRenderTwice() Returns CairoFont WithSlant(FontSlant) public CairoFont WithSlant(FontSlant slant) Parameters slant FontSlant Returns CairoFont WithStroke(double[], double) public CairoFont WithStroke(double[] color, double width) Parameters color double[] width double Returns CairoFont WithWeight(FontWeight) Adds a weight to the font. public CairoFont WithWeight(FontWeight weight) Parameters weight FontWeight The weight of the font. Returns CairoFont" + "keywords": "Class CairoFont Namespace Vintagestory.API.Client Assembly VintagestoryAPI.dll Represent a font with sizing and styling for use in rendering text public class CairoFont : FontConfig, IDisposable Inheritance object FontConfig CairoFont Implements IDisposable Inherited Members FontConfig.UnscaledFontsize FontConfig.Fontname FontConfig.FontWeight FontConfig.Color FontConfig.StrokeColor FontConfig.StrokeWidth object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors CairoFont() Creates an empty CairoFont instance. public CairoFont() CairoFont(double, string) Creates a CairoFont object. public CairoFont(double unscaledFontSize, string fontName) Parameters unscaledFontSize double The size of the font before scaling is applied. fontName string The name of the font. CairoFont(double, string, double[], double[]) Creates a CairoFont object public CairoFont(double unscaledFontSize, string fontName, double[] color, double[] strokeColor = null) Parameters unscaledFontSize double The size of the font before scaling is applied. fontName string The name of the font. color double[] The color of the font. strokeColor double[] The color for the stroke of the font. (Default: Null) CairoFont(FontConfig) Creates a pre-populated CairoFont instance. public CairoFont(FontConfig config) Parameters config FontConfig The configuration for the CairoFont Fields FontMeasuringContext The static Context for all Cairo Fonts. public static Context FontMeasuringContext Field Value Context LineHeightMultiplier public double LineHeightMultiplier Field Value double Orientation public EnumTextOrientation Orientation Field Value EnumTextOrientation RenderTwice Whether or not the font is rendered twice. public bool RenderTwice Field Value bool Slant public FontSlant Slant Field Value FontSlant Methods AutoBoxSize(string, ElementBounds, bool) Adjust the bounds so that it fits given text in one line public void AutoBoxSize(string text, ElementBounds bounds, bool onlyGrow = false) Parameters text string The text to adjust bounds ElementBounds The bounds to adjust the text to. onlyGrow bool If true, the box will not be made smaller AutoFontSize(string, ElementBounds, bool) Adjust font size so that it fits given bounds public void AutoFontSize(string text, ElementBounds bounds, bool onlyShrink = true) Parameters text string The text of the object. bounds ElementBounds The bounds of the element where the font is displayed. onlyShrink bool ButtonPressedText() Creates a text preset for when the button is pressed. public static CairoFont ButtonPressedText() Returns CairoFont The text preset for a pressed button. ButtonText() Creates a Button Text preset. public static CairoFont ButtonText() Returns CairoFont The button text preset. Clone() Clone function. Creates a duplicate of this Cairofont. public CairoFont Clone() Returns CairoFont The duplicate font. Dispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. public void Dispose() GetFontExtents() Gets the font's extents. public FontExtents GetFontExtents() Returns FontExtents The FontExtents for this particular font. GetTextExtents(string) Gets the extents of the text. public TextExtents GetTextExtents(string text) Parameters text string The text to extend. Returns TextExtents The Text extends for this font with this text. SetupContext(Context) Sets up the context. Must be executed in the main thread, as it is not thread safe. public void SetupContext(Context ctx) Parameters ctx Context The context to set up the CairoFont with. SmallTextInput() Creates a text oreset for smaller text input fields. public static CairoFont SmallTextInput() Returns CairoFont The smaller text input preset. TextInput() Creates a text preset for text input fields. public static CairoFont TextInput() Returns CairoFont The text field input preset. WhiteDetailText() Creates a white text for details. public static CairoFont WhiteDetailText() Returns CairoFont A white text for details. WhiteMediumText() Creates a white text for medium dialog. public static CairoFont WhiteMediumText() Returns CairoFont The white text for medium dialog. WhiteSmallText() Creates a white text for small dialogs. public static CairoFont WhiteSmallText() Returns CairoFont The white text for small dialogs WhiteSmallishText() Creates a white text for smallish dialogs. public static CairoFont WhiteSmallishText() Returns CairoFont The white text for small dialogs. WhiteSmallishText(string) Creates a white text for smallish dialogs, using the specified base font public static CairoFont WhiteSmallishText(string baseFont) Parameters baseFont string Returns CairoFont WithColor(double[]) Sets the color of the CairoFont. public CairoFont WithColor(double[] color) Parameters color double[] The color to set. Returns CairoFont WithFont(string) public CairoFont WithFont(string fontname) Parameters fontname string Returns CairoFont WithFontSize(float) Sets the base size of the CairoFont. public CairoFont WithFontSize(float fontSize) Parameters fontSize float The new font size Returns CairoFont WithLineHeightMultiplier(double) public CairoFont WithLineHeightMultiplier(double lineHeightMul) Parameters lineHeightMul double Returns CairoFont WithOrientation(EnumTextOrientation) public CairoFont WithOrientation(EnumTextOrientation orientation) Parameters orientation EnumTextOrientation Returns CairoFont WithRenderTwice() Sets the font to render twice. public CairoFont WithRenderTwice() Returns CairoFont WithSlant(FontSlant) public CairoFont WithSlant(FontSlant slant) Parameters slant FontSlant Returns CairoFont WithStroke(double[], double) public CairoFont WithStroke(double[] color, double width) Parameters color double[] width double Returns CairoFont WithWeight(FontWeight) Adds a weight to the font. public CairoFont WithWeight(FontWeight weight) Parameters weight FontWeight The weight of the font. Returns CairoFont" }, "api/Vintagestory.API.Client.CanClickSlotDelegate.html": { "href": "api/Vintagestory.API.Client.CanClickSlotDelegate.html", @@ -2067,7 +2067,7 @@ "api/Vintagestory.API.Common.Entities.Entity.html": { "href": "api/Vintagestory.API.Common.Entities.Entity.html", "title": "Class Entity | VintageStory API", - "keywords": "Class Entity Namespace Vintagestory.API.Common.Entities Assembly VintagestoryAPI.dll The basic class for all entities in the game public abstract class Entity : RegistryObject Inheritance object RegistryObject Entity Derived EntityAgent EntityChunky EntityItem Inherited Members RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors Entity() Creates a new instance of an entity public Entity() Entity(int) Creates a minimally populated entity with configurable tracking range, no Stats, no AnimManager and no animations attribute. Currently used by EntityItem. protected Entity(int trackingRange) Parameters trackingRange int Fields ActivityTimers An uptime value running activities. Available on the game client and server. Not synchronized. public Dictionary ActivityTimers Field Value Dictionary AirBubbleParticleProps public static AirBubbleParticles AirBubbleParticleProps Field Value AirBubbleParticles Api The api, if you need it. Available on the game client and server. public ICoreAPI Api Field Value ICoreAPI Attributes Permanently stored entity attributes that are only client or only server side public SyncedTreeAttribute Attributes Field Value SyncedTreeAttribute ClimbingIntoFace public BlockFacing ClimbingIntoFace Field Value BlockFacing ClimbingOnCollBox Set by the game client and server. public Cuboidf ClimbingOnCollBox Field Value Cuboidf ClimbingOnFace The face the entity is climbing on. Null if the entity is not climbing. Set by the game client and server. public BlockFacing ClimbingOnFace Field Value BlockFacing CollidedHorizontally True if the entity is in touch with something solid on both horizontal axes. Set by the game client and server. public bool CollidedHorizontally Field Value bool CollidedVertically True if the entity is in touch with something solid on the vertical axis. Set by the game client and server. public bool CollidedVertically Field Value bool CollisionBox The entities collision box. Offseted by the animation system when necessary. Set by the game client and server. public Cuboidf CollisionBox Field Value Cuboidf DebugAttributes If entity debug mode is on, this info will be transitted to client and displayed above the entities head public SyncedTreeAttribute DebugAttributes Field Value SyncedTreeAttribute DespawnReason public EntityDespawnData DespawnReason Field Value EntityDespawnData EntityId A unique identifier for this entity. Set by the game client and server. public long EntityId Field Value long FeetInLiquid True if the bottom of the collisionbox is inside a liquid. Set by the game client and server. public bool FeetInLiquid Field Value bool FireParticleProps public static AdvancedParticleProperties[] FireParticleProps Field Value AdvancedParticleProperties[] FloatingSedimentParticles public static FloatingSedimentParticles FloatingSedimentParticles Field Value FloatingSedimentParticles HurtColor Color used when the entity is being attacked protected int HurtColor Field Value int InChunkIndex3d public long InChunkIndex3d Field Value long InLava public bool InLava Field Value bool InLavaBeginTotalMs public long InLavaBeginTotalMs Field Value long IsRendered Set by the client renderer when the entity was rendered last frame public bool IsRendered Field Value bool IsShadowRendered Set by the client renderer when the entity shadow was rendered last frame public bool IsShadowRendered Field Value bool IsTeleport Used by the server to tell connected clients that the next entity position packet should not have its position change get interpolated. Gets set to false after the packet was sent public bool IsTeleport Field Value bool OnFireBeginTotalMs public long OnFireBeginTotalMs Field Value long OnGround True if this entity is in touch with the ground. Set by the game client and server. public bool OnGround Field Value bool OriginCollisionBox The entities collision box. Not Offseted. Set by the game client and server. public Cuboidf OriginCollisionBox Field Value Cuboidf OriginSelectionBox The entities selection box. Not Offseted. Set by the game client and server. public Cuboidf OriginSelectionBox Field Value Cuboidf PhysicsUpdateWatcher The vanilla physics systems will call this method if a physics behavior was assigned to it. The game client for example requires this to be called for the current player to properly render the player. Available on the game client and server. public PhysicsTickDelegate PhysicsUpdateWatcher Field Value PhysicsTickDelegate Pos Client position public EntityPos Pos Field Value EntityPos PositionBeforeFalling The position where the entity last had contact with the ground. Set by the game client and server. public Vec3d PositionBeforeFalling Field Value Vec3d PreviousServerPos Server simulated position copy. Needed by Entities server system to send pos updatess only if ServerPos differs noticably from PreviousServerPos public EntityPos PreviousServerPos Field Value EntityPos SelectionBox The entities selection box. Offseted by the animation system when necessary. Set by the game client and server. public Cuboidf SelectionBox Field Value Cuboidf ServerPos Server simulated position. May not exactly match the client positon public EntityPos ServerPos Field Value EntityPos SimulationRange The range in blocks the entity has to be to a client to do physics and AI. When outside range, then State will be set to inactive public int SimulationRange Field Value int SplashParticleProps public static WaterSplashParticles SplashParticleProps Field Value WaterSplashParticles State The current entity state. NOT stored in WatchedAttributes in from/tobytes when sending to client as always set to Active on client-side Initialize(). Server-side if saved it would likely initially be Despawned when an entity is first loaded from the save due to entities being despawned during the UnloadChunks process, so let's make it always Despawned for consistent behavior (it will be set to Active/Inactive during Initialize() anyhow) public EnumEntityState State Field Value EnumEntityState Stats public EntityStats Stats Field Value EntityStats Swimming True if the collisionbox is 2/3rds submerged in liquid. Set by the game client and server. public bool Swimming Field Value bool Teleporting Used by the teleporter block public bool Teleporting Field Value bool WatchedAttributes Permanently stored entity attributes that are sent to client everytime they have been changed public SyncedTreeAttribute WatchedAttributes Field Value SyncedTreeAttribute World World where the entity is spawned in. Available on the game client and server. public IWorldAccessor World Field Value IWorldAccessor alive protected bool alive Field Value bool bioLumiNoise public static NormalizedSimplexNoise bioLumiNoise Field Value NormalizedSimplexNoise bioLumiParticles public static SimpleParticleProperties bioLumiParticles Field Value SimpleParticleProperties hasRepulseBehavior public bool hasRepulseBehavior Field Value bool minRangeToClient public float minRangeToClient Field Value float ownPosRepulse public Vec3d ownPosRepulse Field Value Vec3d packet Used for efficiency in multi-player servers, to avoid regenerating the packet again for each connected client public object packet Field Value object resetLightHsv protected bool resetLightHsv Field Value bool touchDistanceSq public double touchDistanceSq Field Value double Properties Alive True if the entity is in state active or inactive, or generally not dead (for non-living entities, 'dead' means ready to despawn) public virtual bool Alive { get; set; } Property Value bool AlwaysActive Whether this entity should always stay in Active model, regardless on how far away other player are public virtual bool AlwaysActive { get; } Property Value bool AnimManager Server simulated animations. Only takes care of stopping animations once they're done Set and Called by the Entities ServerSystem public virtual IAnimationManager AnimManager { get; set; } Property Value IAnimationManager ApplyGravity If gravity should applied to this entity public virtual bool ApplyGravity { get; } Property Value bool Collided CollidedVertically || CollidedHorizontally public bool Collided { get; } Property Value bool IdleSoundChanceModifier public float IdleSoundChanceModifier { get; set; } Property Value float IsCreature Used by AItasks for perfomance. When searching for nearby entities we distinguish between (A) Creatures and (B) Inanimate entitie. Inanimate entities are items on the ground, projectiles, armor stands, rafts, falling blocks etc Note 1: Dead creatures / corpses count as a Creature. EntityPlayer is a Creature of course. Note 2: Straw Dummy we count as a Creature, because weapons can target it and bees can attack it. In contrast, Armor Stand we count as Inanimate, because nothing should ever attack or target it. public virtual bool IsCreature { get; } Property Value bool IsInteractable Should return true when this entity should be interactable by a player or other entities public virtual bool IsInteractable { get; } Property Value bool IsOnFire public bool IsOnFire { get; set; } Property Value bool LadderFixDelta A small offset used to prevent players from clipping through the blocks above ladders: relevant if the entity's collision box is sometimes adjusted by the game code public virtual double LadderFixDelta { get; } Property Value double LightHsv If set, the entity will emit dynamic light public virtual byte[] LightHsv { get; set; } Property Value byte[] LocalEyePos The height of the eyes for the given entity. public virtual Vec3d LocalEyePos { get; set; } Property Value Vec3d MaterialDensity Determines on whether an entity floats on liquids or not and how strongly items get pushed by water. Water has a density of 1000. A density below 1000 means the entity floats on top of water if has a physics simulation behavior attached to it. public virtual float MaterialDensity { get; } Property Value float Properties public EntityProperties Properties { get; protected set; } Property Value EntityProperties RenderColor Used by some renderers to apply an overal color tint on the entity public int RenderColor { get; } Property Value int ShouldDespawn If the entity should despawn next server tick. By default returns !Alive for non-creatures and creatures that don't have a Decay behavior public virtual bool ShouldDespawn { get; } Property Value bool SidedPos ServerPos on server, Pos on client public EntityPos SidedPos { get; } Property Value EntityPos SidedProperties public EntitySidedProperties SidedProperties { get; } Property Value EntitySidedProperties StoreWithChunk Players and whatever the player rides on will be stored seperatly public virtual bool StoreWithChunk { get; } Property Value bool SwimmingOffsetY Used for passive physics simulation, together with the MaterialDensity to check how deep in the water the entity should float public virtual double SwimmingOffsetY { get; } Property Value double Methods AddBehavior(EntityBehavior) Adds given behavior to the entities list of active behaviors public virtual void AddBehavior(EntityBehavior behavior) Parameters behavior EntityBehavior AfterInitialized(bool) public void AfterInitialized(bool onFirstSpawn) Parameters onFirstSpawn bool ApplyFireDamage(float) protected void ApplyFireDamage(float dt) Parameters dt float CanCollect(Entity) Should return true if this item can be picked up as an itemstack public virtual bool CanCollect(Entity byEntity) Parameters byEntity Entity Returns bool DidImportOrExport(BlockPos) This method is called by the BlockSchematic class a moment after a schematic containing this entity has been exported. Since a schematic can be placed anywhere in the world, this method has to make sure the entities position is set to the correct position in relation to the target position of the schematic to be imported. public virtual void DidImportOrExport(BlockPos startPos) Parameters startPos BlockPos Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public virtual void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource DieInLava() protected void DieInLava() DoInitialActiveCheck(ICoreAPI) protected void DoInitialActiveCheck(ICoreAPI api) Parameters api ICoreAPI FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public virtual void FromBytes(BinaryReader reader, bool isSync) Parameters reader BinaryReader isSync bool True if this is a sync operation, not a chunk read operation FromBytes(BinaryReader, bool, Dictionary) In order to maintain legacy mod API compatibility of FromBytes(BinaryReader reader, bool isSync), we create an overload which server-side calling code will actually call, and store the remaps parameter in a field public virtual void FromBytes(BinaryReader reader, bool isSync, Dictionary serversideRemaps) Parameters reader BinaryReader isSync bool serversideRemaps Dictionary GetBehavior(string) Returns the behavior instance for given entity. Returns null if it doesn't exist. public virtual EntityBehavior GetBehavior(string name) Parameters name string Returns EntityBehavior GetBehavior() Returns the first behavior instance for given entity of given type. Returns null if it doesn't exist. public virtual T GetBehavior() where T : EntityBehavior Returns T Type Parameters T GetDrops(IWorldAccessor, BlockPos, IPlayer) Is called before the entity is killed, should return what items this entity should drop. Return null or empty array for no drops. public virtual ItemStack[] GetDrops(IWorldAccessor world, BlockPos pos, IPlayer byPlayer) Parameters world IWorldAccessor pos BlockPos byPlayer IPlayer Returns ItemStack[] GetHeadPositionFromWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected virtual void GetHeadPositionFromWatchedAttributes() GetInfoText() gets the info text for the entity. public virtual string GetInfoText() Returns string GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Called when a player looks at the entity with interaction help enabled public virtual WorldInteraction[] GetInteractionHelp(IClientWorldAccessor world, EntitySelection es, IClientPlayer player) Parameters world IClientWorldAccessor es EntitySelection player IClientPlayer Returns WorldInteraction[] GetName() Gets the name for this entity public virtual string GetName() Returns string HasBehavior(string) Returns true if the entity has given active behavior public virtual bool HasBehavior(string behaviorName) Parameters behaviorName string Returns bool HasBehavior() public virtual bool HasBehavior() where T : EntityBehavior Returns bool Type Parameters T Ignite() public virtual void Ignite() Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public virtual void Initialize(EntityProperties properties, ICoreAPI api, long InChunkIndex3d) Parameters properties EntityProperties api ICoreAPI InChunkIndex3d long IsActivityRunning(string) Returns true if given activity is running public virtual bool IsActivityRunning(string key) Parameters key string Returns bool Notify(string, object) This method pings the Notify() method of all behaviors and ai tasks. Can be used to spread information to other creatures. public virtual void Notify(string key, object data) Parameters key string data object OnAsyncParticleTick(float, IAsyncParticleManager) public virtual void OnAsyncParticleTick(float dt, IAsyncParticleManager manager) Parameters dt float manager IAsyncParticleManager OnCollected(Entity) Called by BehaviorCollectEntities of nearby entities. Should return the itemstack that should be collected. If the item stack was fully picked up, BehaviorCollectEntities will kill this entity public virtual ItemStack OnCollected(Entity byEntity) Parameters byEntity Entity Returns ItemStack OnCollideWithLiquid() Called when the entity got in touch with a liquid public virtual void OnCollideWithLiquid() OnCollided() Called when the entity collided with something solid and Collided was false before public virtual void OnCollided() OnEntityDespawn(EntityDespawnData) Called when the entity despawns public virtual void OnEntityDespawn(EntityDespawnData despawn) Parameters despawn EntityDespawnData OnEntityLoaded() Called when after the got loaded from the savegame (not called during spawn) public virtual void OnEntityLoaded() OnEntitySpawn() Called when the entity spawns (not called when loaded from the savegame). public virtual void OnEntitySpawn() OnExitedLiquid() Called when the entity has left a liquid public virtual void OnExitedLiquid() OnFallToGround(double) Called when the entity collided vertically public virtual void OnFallToGround(double motionY) Parameters motionY double OnGameTick(float) Called every 1/75 second public virtual void OnGameTick(float dt) Parameters dt float OnHurt(DamageSource, float) Called when the entity got hurt. On the client side, dmgSource is null public virtual void OnHurt(DamageSource dmgSource, float damage) Parameters dmgSource DamageSource damage float OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Called when an entity has interacted with this entity public virtual void OnInteract(EntityAgent byEntity, ItemSlot itemslot, Vec3d hitPosition, EnumInteractMode mode) Parameters byEntity EntityAgent itemslot ItemSlot If being interacted with a block/item, this should be the slot the item is being held in hitPosition Vec3d Relative position on the entites hitbox where the entity interacted at mode EnumInteractMode 0 = attack, 1 = interact OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Called by the blockschematic loader so that you may fix any blockid/itemid mappings against the mapping of the savegame, if you store any collectibles in this blockentity. Note: Some vanilla blocks resolve randomized contents in this method. Hint: Use itemstack.FixMapping() to do the job for you. [Obsolete(\"Use the variant with resolveImports parameter\")] public virtual void OnLoadCollectibleMappings(IWorldAccessor worldForNewMappings, Dictionary oldBlockIdMapping, Dictionary oldItemIdMapping, int schematicSeed) Parameters worldForNewMappings IWorldAccessor oldBlockIdMapping Dictionary oldItemIdMapping Dictionary schematicSeed int If you need some sort of randomness consistency accross an imported schematic, you can use this value OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Called by the blockschematic loader so that you may fix any blockid/itemid mappings against the mapping of the savegame, if you store any collectibles in this blockentity. Note: Some vanilla blocks resolve randomized contents in this method. Hint: Use itemstack.FixMapping() to do the job for you. public virtual void OnLoadCollectibleMappings(IWorldAccessor worldForNewMappings, Dictionary oldBlockIdMapping, Dictionary oldItemIdMapping, int schematicSeed, bool resolveImports) Parameters worldForNewMappings IWorldAccessor oldBlockIdMapping Dictionary oldItemIdMapping Dictionary schematicSeed int If you need some sort of randomness consistency accross an imported schematic, you can use this value resolveImports bool Turn it off to spawn structures as they are. For example, in this mode, instead of traders, their meta spawners will spawn OnReceivedClientPacket(IServerPlayer, int, byte[]) Called when on the client side something called capi.Network.SendEntityPacket() public virtual void OnReceivedClientPacket(IServerPlayer player, int packetid, byte[] data) Parameters player IServerPlayer packetid int data byte[] OnReceivedServerAnimations(int[], int, float[]) public virtual void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] OnReceivedServerPacket(int, byte[]) Called when on the server side something called sapi.Network.SendEntityPacket() Packetid = 1 is used for teleporting Packetid = 2 is used for BehaviorHarvestable public virtual void OnReceivedServerPacket(int packetid, byte[] data) Parameters packetid int data byte[] OnReceivedServerPos(bool) Called by client when a new server pos arrived public virtual void OnReceivedServerPos(bool isTeleport) Parameters isTeleport bool OnStateChanged(EnumEntityState) Called on the server when the entity was changed from active to inactive state or vice versa public virtual void OnStateChanged(EnumEntityState beforeState) Parameters beforeState EnumEntityState OnStoreCollectibleMappings(Dictionary, Dictionary) Called by the worldedit schematic exporter so that it can also export the mappings of items/blocks stored inside blockentities public virtual void OnStoreCollectibleMappings(Dictionary blockIdMapping, Dictionary itemIdMapping) Parameters blockIdMapping Dictionary itemIdMapping Dictionary OnTesselation(ref Shape, string) Called by EntityShapeRenderer.cs before tesselating the entity shape public virtual void OnTesselation(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string PlayEntitySound(string, IPlayer, bool, float) Assumes that it is only called on the server public virtual void PlayEntitySound(string type, IPlayer dualCallByPlayer = null, bool randomizePitch = true, float range = 24) Parameters type string dualCallByPlayer IPlayer randomizePitch bool range float ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public virtual bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage RemainingActivityTime(string) Returns the remaining time on an activity in milliesconds public virtual int RemainingActivityTime(string key) Parameters key string Returns int RemoveBehavior(EntityBehavior) Removes given behavior to the entities list of active behaviors. Does nothing if the behavior has already been removed public virtual void RemoveBehavior(EntityBehavior behavior) Parameters behavior EntityBehavior Revive() Revives the entity and heals for 9999. public virtual void Revive() SetActivityRunning(string, int) Starts an activity for a given duration public virtual void SetActivityRunning(string key, int milliseconds) Parameters key string milliseconds int SetCollisionBox(float, float) Helper method to set the CollisionBox public virtual void SetCollisionBox(float length, float height) Parameters length float height float SetHeadPositionToWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected virtual void SetHeadPositionToWatchedAttributes() SetSelectionBox(float, float) public virtual void SetSelectionBox(float length, float height) Parameters length float height float ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public virtual bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool SpawnWaterMovementParticles(float, double, double, double) protected virtual void SpawnWaterMovementParticles(float quantityMul, double offx = 0, double offy = 0, double offz = 0) Parameters quantityMul float offx double offy double offz double StartAnimation(string) Starts the animation for the entity. public virtual void StartAnimation(string code) Parameters code string StopAnimation(string) stops the animation for the entity. public virtual void StopAnimation(string code) Parameters code string TeleportTo(int, int, int) Teleports the entity to given position public virtual void TeleportTo(int x, int y, int z) Parameters x int y int z int TeleportTo(EntityPos, Action) Teleports the entity to given position public virtual void TeleportTo(EntityPos position, Action onTeleported = null) Parameters position EntityPos onTeleported Action TeleportTo(BlockPos) Teleports the entity to given position public virtual void TeleportTo(BlockPos position) Parameters position BlockPos TeleportTo(Vec3d) Teleports the entity to given position public virtual void TeleportTo(Vec3d position) Parameters position Vec3d TeleportToDouble(double, double, double, Action) Teleports the entity to given position. Actual teleport is delayed until target chunk is loaded. public virtual void TeleportToDouble(double x, double y, double z, Action onTeleported = null) Parameters x double y double z double onTeleported Action ToBytes(BinaryWriter, bool) Serializes the slots contents to be stored in the SaveGame public virtual void ToBytes(BinaryWriter writer, bool forClient) Parameters writer BinaryWriter forClient bool True when being used to send an entity to the client TriggerOnInitialized() protected void TriggerOnInitialized() TryGiveItemStack(ItemStack) Called when something tries to given an itemstack to this entity public virtual bool TryGiveItemStack(ItemStack itemstack) Parameters itemstack ItemStack Returns bool UpdateDebugAttributes() Updates the DebugAttributes tree public virtual void UpdateDebugAttributes() WillExport(BlockPos) This method is called by the BlockSchematic class a moment before a schematic containing this entity is getting exported. Since a schematic can be placed anywhere in the world, this method has to make sure the entities position is set to a value relative of the schematic origin point defined by startPos Right after calling this method, the world edit system will call .ToBytes() to serialize the entity public virtual void WillExport(BlockPos startPos) Parameters startPos BlockPos updateColSelBoxes() protected void updateColSelBoxes() updateOnFire() protected void updateOnFire() Events OnInitialized public event Action OnInitialized Event Type Action" + "keywords": "Class Entity Namespace Vintagestory.API.Common.Entities Assembly VintagestoryAPI.dll The basic class for all entities in the game public abstract class Entity : RegistryObject Inheritance object RegistryObject Entity Derived EntityAgent EntityChunky EntityItem Inherited Members RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors Entity() Creates a new instance of an entity public Entity() Entity(int) Creates a minimally populated entity with configurable tracking range, no Stats, no AnimManager and no animations attribute. Currently used by EntityItem. protected Entity(int trackingRange) Parameters trackingRange int Fields ActivityTimers An uptime value running activities. Available on the game client and server. Not synchronized. public Dictionary ActivityTimers Field Value Dictionary AirBubbleParticleProps public static AirBubbleParticles AirBubbleParticleProps Field Value AirBubbleParticles Api The api, if you need it. Available on the game client and server. public ICoreAPI Api Field Value ICoreAPI Attributes Permanently stored entity attributes that are only client or only server side public SyncedTreeAttribute Attributes Field Value SyncedTreeAttribute ClimbingIntoFace public BlockFacing ClimbingIntoFace Field Value BlockFacing ClimbingOnCollBox Set by the game client and server. public Cuboidf ClimbingOnCollBox Field Value Cuboidf ClimbingOnFace The face the entity is climbing on. Null if the entity is not climbing. Set by the game client and server. public BlockFacing ClimbingOnFace Field Value BlockFacing CollidedHorizontally True if the entity is in touch with something solid on both horizontal axes. Set by the game client and server. public bool CollidedHorizontally Field Value bool CollidedVertically True if the entity is in touch with something solid on the vertical axis. Set by the game client and server. public bool CollidedVertically Field Value bool CollisionBox The entities collision box. Offseted by the animation system when necessary. Set by the game client and server. public Cuboidf CollisionBox Field Value Cuboidf DebugAttributes If entity debug mode is on, this info will be transitted to client and displayed above the entities head public SyncedTreeAttribute DebugAttributes Field Value SyncedTreeAttribute DespawnReason public EntityDespawnData DespawnReason Field Value EntityDespawnData EntityId A unique identifier for this entity. Set by the game client and server. public long EntityId Field Value long FeetInLiquid True if the bottom of the collisionbox is inside a liquid. Set by the game client and server. public bool FeetInLiquid Field Value bool FireParticleProps public static AdvancedParticleProperties[] FireParticleProps Field Value AdvancedParticleProperties[] FloatingSedimentParticles public static FloatingSedimentParticles FloatingSedimentParticles Field Value FloatingSedimentParticles HurtColor Color used when the entity is being attacked protected int HurtColor Field Value int InChunkIndex3d public long InChunkIndex3d Field Value long InLava public bool InLava Field Value bool InLavaBeginTotalMs public long InLavaBeginTotalMs Field Value long IsRendered Set by the client renderer when the entity was rendered last frame public bool IsRendered Field Value bool IsShadowRendered Set by the client renderer when the entity shadow was rendered last frame public bool IsShadowRendered Field Value bool IsTeleport Used by the server to tell connected clients that the next entity position packet should not have its position change get interpolated. Gets set to false after the packet was sent public bool IsTeleport Field Value bool OnFireBeginTotalMs public long OnFireBeginTotalMs Field Value long OnGround True if this entity is in touch with the ground. Set by the game client and server. public bool OnGround Field Value bool OriginCollisionBox The entities collision box. Not Offseted. Set by the game client and server. public Cuboidf OriginCollisionBox Field Value Cuboidf OriginSelectionBox The entities selection box. Not Offseted. Set by the game client and server. public Cuboidf OriginSelectionBox Field Value Cuboidf PhysicsUpdateWatcher The vanilla physics systems will call this method if a physics behavior was assigned to it. The game client for example requires this to be called for the current player to properly render the player. Available on the game client and server. public PhysicsTickDelegate PhysicsUpdateWatcher Field Value PhysicsTickDelegate Pos Client position public EntityPos Pos Field Value EntityPos PositionBeforeFalling The position where the entity last had contact with the ground. Set by the game client and server. public Vec3d PositionBeforeFalling Field Value Vec3d PreviousServerPos Server simulated position copy. Needed by Entities server system to send pos updatess only if ServerPos differs noticably from PreviousServerPos public EntityPos PreviousServerPos Field Value EntityPos SelectionBox The entities selection box. Offseted by the animation system when necessary. Set by the game client and server. public Cuboidf SelectionBox Field Value Cuboidf ServerPos Server simulated position. May not exactly match the client positon public EntityPos ServerPos Field Value EntityPos SimulationRange The range in blocks the entity has to be to a client to do physics and AI. When outside range, then State will be set to inactive public int SimulationRange Field Value int SplashParticleProps public static WaterSplashParticles SplashParticleProps Field Value WaterSplashParticles State The current entity state. NOT stored in WatchedAttributes in from/tobytes when sending to client as always set to Active on client-side Initialize(). Server-side if saved it would likely initially be Despawned when an entity is first loaded from the save due to entities being despawned during the UnloadChunks process, so let's make it always Despawned for consistent behavior (it will be set to Active/Inactive during Initialize() anyhow) public EnumEntityState State Field Value EnumEntityState Stats public EntityStats Stats Field Value EntityStats Swimming True if the collisionbox is 2/3rds submerged in liquid. Set by the game client and server. public bool Swimming Field Value bool Teleporting Used by the teleporter block public bool Teleporting Field Value bool WatchedAttributes Permanently stored entity attributes that are sent to client everytime they have been changed public SyncedTreeAttribute WatchedAttributes Field Value SyncedTreeAttribute World World where the entity is spawned in. Available on the game client and server. public IWorldAccessor World Field Value IWorldAccessor alive protected bool alive Field Value bool bioLumiNoise public static NormalizedSimplexNoise bioLumiNoise Field Value NormalizedSimplexNoise bioLumiParticles public static SimpleParticleProperties bioLumiParticles Field Value SimpleParticleProperties hasRepulseBehavior public bool hasRepulseBehavior Field Value bool minRangeToClient public float minRangeToClient Field Value float ownPosRepulse public Vec3d ownPosRepulse Field Value Vec3d packet Used for efficiency in multi-player servers, to avoid regenerating the packet again for each connected client public object packet Field Value object resetLightHsv protected bool resetLightHsv Field Value bool touchDistanceSq public double touchDistanceSq Field Value double Properties Alive True if the entity is in state active or inactive, or generally not dead (for non-living entities, 'dead' means ready to despawn) public virtual bool Alive { get; set; } Property Value bool AlwaysActive Whether this entity should always stay in Active model, regardless on how far away other player are public virtual bool AlwaysActive { get; } Property Value bool AnimManager Server simulated animations. Only takes care of stopping animations once they're done Set and Called by the Entities ServerSystem public virtual IAnimationManager AnimManager { get; set; } Property Value IAnimationManager ApplyGravity If gravity should applied to this entity public virtual bool ApplyGravity { get; } Property Value bool Collided CollidedVertically || CollidedHorizontally public bool Collided { get; } Property Value bool IdleSoundChanceModifier public float IdleSoundChanceModifier { get; set; } Property Value float IsCreature Used by AItasks for perfomance. When searching for nearby entities we distinguish between (A) Creatures and (B) Inanimate entitie. Inanimate entities are items on the ground, projectiles, armor stands, rafts, falling blocks etc Note 1: Dead creatures / corpses count as a Creature. EntityPlayer is a Creature of course. Note 2: Straw Dummy we count as a Creature, because weapons can target it and bees can attack it. In contrast, Armor Stand we count as Inanimate, because nothing should ever attack or target it. public virtual bool IsCreature { get; } Property Value bool IsInteractable Should return true when this entity should be interactable by a player or other entities public virtual bool IsInteractable { get; } Property Value bool IsOnFire public bool IsOnFire { get; set; } Property Value bool LadderFixDelta A small offset used to prevent players from clipping through the blocks above ladders: relevant if the entity's collision box is sometimes adjusted by the game code public virtual double LadderFixDelta { get; } Property Value double LightHsv If set, the entity will emit dynamic light public virtual byte[] LightHsv { get; set; } Property Value byte[] LocalEyePos The height of the eyes for the given entity. public virtual Vec3d LocalEyePos { get; set; } Property Value Vec3d MaterialDensity Determines on whether an entity floats on liquids or not and how strongly items get pushed by water. Water has a density of 1000. A density below 1000 means the entity floats on top of water if has a physics simulation behavior attached to it. public virtual float MaterialDensity { get; } Property Value float Properties public EntityProperties Properties { get; protected set; } Property Value EntityProperties RenderColor Used by some renderers to apply an overal color tint on the entity public int RenderColor { get; } Property Value int ShouldDespawn If the entity should despawn next server tick. By default returns !Alive for non-creatures and creatures that don't have a Decay behavior public virtual bool ShouldDespawn { get; } Property Value bool SidedPos ServerPos on server, Pos on client public EntityPos SidedPos { get; } Property Value EntityPos SidedProperties public EntitySidedProperties SidedProperties { get; } Property Value EntitySidedProperties StoreWithChunk Players and whatever the player rides on will be stored seperatly public virtual bool StoreWithChunk { get; } Property Value bool SwimmingOffsetY Used for passive physics simulation, together with the MaterialDensity to check how deep in the water the entity should float public virtual double SwimmingOffsetY { get; } Property Value double Methods AddBehavior(EntityBehavior) Adds given behavior to the entities list of active behaviors public virtual void AddBehavior(EntityBehavior behavior) Parameters behavior EntityBehavior AfterInitialized(bool) public void AfterInitialized(bool onFirstSpawn) Parameters onFirstSpawn bool ApplyFireDamage(float) protected void ApplyFireDamage(float dt) Parameters dt float CanCollect(Entity) Should return true if this item can be picked up as an itemstack public virtual bool CanCollect(Entity byEntity) Parameters byEntity Entity Returns bool DidImportOrExport(BlockPos) This method is called by the BlockSchematic class a moment after a schematic containing this entity has been exported. Since a schematic can be placed anywhere in the world, this method has to make sure the entities position is set to the correct position in relation to the target position of the schematic to be imported. public virtual void DidImportOrExport(BlockPos startPos) Parameters startPos BlockPos Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public virtual void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource DieInLava() protected void DieInLava() DoInitialActiveCheck(ICoreAPI) protected void DoInitialActiveCheck(ICoreAPI api) Parameters api ICoreAPI FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public virtual void FromBytes(BinaryReader reader, bool isSync) Parameters reader BinaryReader isSync bool True if this is a sync operation, not a chunk read operation FromBytes(BinaryReader, bool, Dictionary) In order to maintain legacy mod API compatibility of FromBytes(BinaryReader reader, bool isSync), we create an overload which server-side calling code will actually call, and store the remaps parameter in a field public virtual void FromBytes(BinaryReader reader, bool isSync, Dictionary serversideRemaps) Parameters reader BinaryReader isSync bool serversideRemaps Dictionary GetBehavior(string) Returns the behavior instance for given entity. Returns null if it doesn't exist. public virtual EntityBehavior GetBehavior(string name) Parameters name string Returns EntityBehavior GetBehavior() Returns the first behavior instance for given entity of given type. Returns null if it doesn't exist. public virtual T GetBehavior() where T : EntityBehavior Returns T Type Parameters T GetDrops(IWorldAccessor, BlockPos, IPlayer) Is called before the entity is killed, should return what items this entity should drop. Return null or empty array for no drops. public virtual ItemStack[] GetDrops(IWorldAccessor world, BlockPos pos, IPlayer byPlayer) Parameters world IWorldAccessor pos BlockPos byPlayer IPlayer Returns ItemStack[] GetHeadPositionFromWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected virtual void GetHeadPositionFromWatchedAttributes() GetInfoText() gets the info text for the entity. public virtual string GetInfoText() Returns string GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Called when a player looks at the entity with interaction help enabled public virtual WorldInteraction[] GetInteractionHelp(IClientWorldAccessor world, EntitySelection es, IClientPlayer player) Parameters world IClientWorldAccessor es EntitySelection player IClientPlayer Returns WorldInteraction[] GetName() Gets the name for this entity public virtual string GetName() Returns string HasBehavior(string) Returns true if the entity has given active behavior public virtual bool HasBehavior(string behaviorName) Parameters behaviorName string Returns bool HasBehavior() public virtual bool HasBehavior() where T : EntityBehavior Returns bool Type Parameters T Ignite() public virtual void Ignite() Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public virtual void Initialize(EntityProperties properties, ICoreAPI api, long InChunkIndex3d) Parameters properties EntityProperties api ICoreAPI InChunkIndex3d long IsActivityRunning(string) Returns true if given activity is running public virtual bool IsActivityRunning(string key) Parameters key string Returns bool Notify(string, object) This method pings the Notify() method of all behaviors and ai tasks. Can be used to spread information to other creatures. public virtual void Notify(string key, object data) Parameters key string data object OnAsyncParticleTick(float, IAsyncParticleManager) public virtual void OnAsyncParticleTick(float dt, IAsyncParticleManager manager) Parameters dt float manager IAsyncParticleManager OnCollected(Entity) Called by BehaviorCollectEntities of nearby entities. Should return the itemstack that should be collected. If the item stack was fully picked up, BehaviorCollectEntities will kill this entity public virtual ItemStack OnCollected(Entity byEntity) Parameters byEntity Entity Returns ItemStack OnCollideWithLiquid() Called when the entity got in touch with a liquid public virtual void OnCollideWithLiquid() OnCollided() Called when the entity collided with something solid and Collided was false before public virtual void OnCollided() OnEntityDespawn(EntityDespawnData) Called when the entity despawns public virtual void OnEntityDespawn(EntityDespawnData despawn) Parameters despawn EntityDespawnData OnEntityLoaded() Called when after the got loaded from the savegame (not called during spawn) public virtual void OnEntityLoaded() OnEntitySpawn() Called when the entity spawns (not called when loaded from the savegame). public virtual void OnEntitySpawn() OnExitedLiquid() Called when the entity has left a liquid public virtual void OnExitedLiquid() OnFallToGround(double) Called when the entity collided vertically public virtual void OnFallToGround(double motionY) Parameters motionY double OnGameTick(float) Called every 1/75 second public virtual void OnGameTick(float dt) Parameters dt float OnHurt(DamageSource, float) Called when the entity got hurt. On the client side, dmgSource is null public virtual void OnHurt(DamageSource dmgSource, float damage) Parameters dmgSource DamageSource damage float OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Called when an entity has interacted with this entity public virtual void OnInteract(EntityAgent byEntity, ItemSlot itemslot, Vec3d hitPosition, EnumInteractMode mode) Parameters byEntity EntityAgent itemslot ItemSlot If being interacted with a block/item, this should be the slot the item is being held in hitPosition Vec3d Relative position on the entites hitbox where the entity interacted at mode EnumInteractMode 0 = attack, 1 = interact OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Called by the blockschematic loader so that you may fix any blockid/itemid mappings against the mapping of the savegame, if you store any collectibles in this blockentity. Note: Some vanilla blocks resolve randomized contents in this method. Hint: Use itemstack.FixMapping() to do the job for you. [Obsolete(\"Use the variant with resolveImports parameter\")] public virtual void OnLoadCollectibleMappings(IWorldAccessor worldForNewMappings, Dictionary oldBlockIdMapping, Dictionary oldItemIdMapping, int schematicSeed) Parameters worldForNewMappings IWorldAccessor oldBlockIdMapping Dictionary oldItemIdMapping Dictionary schematicSeed int If you need some sort of randomness consistency accross an imported schematic, you can use this value OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Called by the blockschematic loader so that you may fix any blockid/itemid mappings against the mapping of the savegame, if you store any collectibles in this blockentity. Note: Some vanilla blocks resolve randomized contents in this method. Hint: Use itemstack.FixMapping() to do the job for you. public virtual void OnLoadCollectibleMappings(IWorldAccessor worldForNewMappings, Dictionary oldBlockIdMapping, Dictionary oldItemIdMapping, int schematicSeed, bool resolveImports) Parameters worldForNewMappings IWorldAccessor oldBlockIdMapping Dictionary oldItemIdMapping Dictionary schematicSeed int If you need some sort of randomness consistency accross an imported schematic, you can use this value resolveImports bool Turn it off to spawn structures as they are. For example, in this mode, instead of traders, their meta spawners will spawn OnReceivedClientPacket(IServerPlayer, int, byte[]) Called when on the client side something called capi.Network.SendEntityPacket() public virtual void OnReceivedClientPacket(IServerPlayer player, int packetid, byte[] data) Parameters player IServerPlayer packetid int data byte[] OnReceivedServerAnimations(int[], int, float[]) public virtual void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] OnReceivedServerPacket(int, byte[]) Called when on the server side something called sapi.Network.SendEntityPacket() Packetid = 1 is used for teleporting Packetid = 2 is used for BehaviorHarvestable public virtual void OnReceivedServerPacket(int packetid, byte[] data) Parameters packetid int data byte[] OnReceivedServerPos(bool) Called by client when a new server pos arrived public virtual void OnReceivedServerPos(bool isTeleport) Parameters isTeleport bool OnStateChanged(EnumEntityState) Called on the server when the entity was changed from active to inactive state or vice versa public virtual void OnStateChanged(EnumEntityState beforeState) Parameters beforeState EnumEntityState OnStoreCollectibleMappings(Dictionary, Dictionary) Called by the worldedit schematic exporter so that it can also export the mappings of items/blocks stored inside blockentities public virtual void OnStoreCollectibleMappings(Dictionary blockIdMapping, Dictionary itemIdMapping) Parameters blockIdMapping Dictionary itemIdMapping Dictionary OnTesselation(ref Shape, string) Called by EntityShapeRenderer.cs before tesselating the entity shape public virtual void OnTesselation(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string PlayEntitySound(string, IPlayer, bool, float) Assumes that it is only called on the server public virtual void PlayEntitySound(string type, IPlayer dualCallByPlayer = null, bool randomizePitch = true, float range = 24) Parameters type string dualCallByPlayer IPlayer randomizePitch bool range float ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public virtual bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage RemainingActivityTime(string) Returns the remaining time on an activity in milliesconds public virtual int RemainingActivityTime(string key) Parameters key string Returns int RemoveBehavior(EntityBehavior) Removes given behavior to the entities list of active behaviors. Does nothing if the behavior has already been removed public virtual void RemoveBehavior(EntityBehavior behavior) Parameters behavior EntityBehavior Revive() Revives the entity and heals for 9999. public virtual void Revive() SetActivityRunning(string, int) Starts an activity for a given duration public virtual void SetActivityRunning(string key, int milliseconds) Parameters key string milliseconds int SetCollisionBox(float, float) Helper method to set the CollisionBox public virtual void SetCollisionBox(float length, float height) Parameters length float height float SetHeadPositionToWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected virtual void SetHeadPositionToWatchedAttributes() SetSelectionBox(float, float) public virtual void SetSelectionBox(float length, float height) Parameters length float height float ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public virtual bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool SpawnWaterMovementParticles(float, double, double, double) protected virtual void SpawnWaterMovementParticles(float quantityMul, double offx = 0, double offy = 0, double offz = 0) Parameters quantityMul float offx double offy double offz double StartAnimation(string) Starts the animation for the entity. public virtual void StartAnimation(string code) Parameters code string StopAnimation(string) stops the animation for the entity. public virtual void StopAnimation(string code) Parameters code string TeleportTo(int, int, int) Teleports the entity to given position public virtual void TeleportTo(int x, int y, int z) Parameters x int y int z int TeleportTo(EntityPos, Action) Teleports the entity to given position public virtual void TeleportTo(EntityPos position, Action onTeleported = null) Parameters position EntityPos onTeleported Action TeleportTo(BlockPos) Teleports the entity to given position public virtual void TeleportTo(BlockPos position) Parameters position BlockPos TeleportTo(Vec3d) Teleports the entity to given position public virtual void TeleportTo(Vec3d position) Parameters position Vec3d TeleportToDouble(double, double, double, Action) Teleports the entity to given position. Actual teleport is delayed until target chunk is loaded. public virtual void TeleportToDouble(double x, double y, double z, Action onTeleported = null) Parameters x double y double z double onTeleported Action ToBytes(BinaryWriter, bool) Serializes the slots contents to be stored in the SaveGame public virtual void ToBytes(BinaryWriter writer, bool forClient) Parameters writer BinaryWriter forClient bool True when being used to send an entity to the client TriggerOnInitialized() protected void TriggerOnInitialized() TryGiveItemStack(ItemStack) Called when something tries to given an itemstack to this entity public virtual bool TryGiveItemStack(ItemStack itemstack) Parameters itemstack ItemStack Returns bool UpdateAnimationDebugAttributes() protected virtual void UpdateAnimationDebugAttributes() UpdateDebugAttributes() Updates the DebugAttributes tree public virtual void UpdateDebugAttributes() WillExport(BlockPos) This method is called by the BlockSchematic class a moment before a schematic containing this entity is getting exported. Since a schematic can be placed anywhere in the world, this method has to make sure the entities position is set to a value relative of the schematic origin point defined by startPos Right after calling this method, the world edit system will call .ToBytes() to serialize the entity public virtual void WillExport(BlockPos startPos) Parameters startPos BlockPos updateColSelBoxes() protected void updateColSelBoxes() updateOnFire() protected void updateOnFire() Events OnInitialized public event Action OnInitialized Event Type Action" }, "api/Vintagestory.API.Common.Entities.EntityBehavior.html": { "href": "api/Vintagestory.API.Common.Entities.EntityBehavior.html", @@ -2182,7 +2182,7 @@ "api/Vintagestory.API.Common.EntityAgent.html": { "href": "api/Vintagestory.API.Common.EntityAgent.html", "title": "Class EntityAgent | VintageStory API", - "keywords": "Class EntityAgent Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll A goal-directed entity which observes and acts upon an environment public class EntityAgent : Entity Inheritance object RegistryObject Entity EntityAgent Derived EntityHumanoid Inherited Members Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.IsInteractable Entity.SwimmingOffsetY Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.MaterialDensity Entity.LightHsv Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnFallToGround(double) Entity.OnCollided() Entity.OnCollideWithLiquid() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnEntityDespawn(EntityDespawnData) Entity.OnExitedLiquid() Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnReceivedServerAnimations(int[], int, float[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.GetName() Entity.GetInfoText() Entity.StartAnimation(string) Entity.StopAnimation(string) RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityAgent() public EntityAgent() Fields AllowDespawn Whether or not the entity is allowed to despawn (Default: true) public bool AllowDespawn Field Value bool CurrentControls public EnumEntityActivity CurrentControls Field Value EnumEntityActivity DeadNotify True if all clients have to be informed about this entities death. Set to false once all clients have been notified public bool DeadNotify Field Value bool controls protected EntityControls controls Field Value EntityControls hideClothing public bool hideClothing Field Value bool insideBlock updated by GetWalkSpeedMultiplier() protected Block insideBlock Field Value Block insidePos updated by GetWalkSpeedMultiplier() protected BlockPos insidePos Field Value BlockPos servercontrols protected EntityControls servercontrols Field Value EntityControls Properties ActiveHandItemSlot public virtual ItemSlot ActiveHandItemSlot { get; } Property Value ItemSlot BodyYaw The yaw of the agents body public virtual float BodyYaw { get; set; } Property Value float BodyYawServer The yaw of the agents body on the client, retrieved from the server (BehaviorInterpolatePosition lerps this value and sets BodyYaw) public virtual float BodyYawServer { get; set; } Property Value float Controls The controls for this entity. public EntityControls Controls { get; } Property Value EntityControls GearInventory The inventory of the entity agent. public virtual IInventory GearInventory { get; set; } Property Value IInventory HerdId Unique identifier for a herd public long HerdId { get; set; } Property Value long IsCreature Used by AItasks for perfomance. When searching for nearby entities we distinguish between (A) Creatures and (B) Inanimate entitie. Inanimate entities are items on the ground, projectiles, armor stands, rafts, falling blocks etc Note 1: Dead creatures / corpses count as a Creature. EntityPlayer is a Creature of course. Note 2: Straw Dummy we count as a Creature, because weapons can target it and bees can attack it. In contrast, Armor Stand we count as Inanimate, because nothing should ever attack or target it. public override bool IsCreature { get; } Property Value bool LeftHandItemSlot Item in the left hand slot of the entity agent. public virtual ItemSlot LeftHandItemSlot { get; set; } Property Value ItemSlot MountedOn public IMountable MountedOn { get; protected set; } Property Value IMountable RightHandItemSlot Item in the right hand slot of the entity agent. public virtual ItemSlot RightHandItemSlot { get; set; } Property Value ItemSlot ServerControls The server controls for this entity public EntityControls ServerControls { get; } Property Value EntityControls ShouldDespawn Whether or not the entity should despawn. public override bool ShouldDespawn { get; } Property Value bool Methods DidAttack(DamageSource, EntityAgent) public virtual void DidAttack(DamageSource source, EntityAgent targetEntity) Parameters source DamageSource targetEntity EntityAgent Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool GetHeadPositionFromWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected override void GetHeadPositionFromWatchedAttributes() GetWalkSpeedMultiplier(double) Gets the walk speed multiplier. public virtual double GetWalkSpeedMultiplier(double groundDragFactor = 0.3) Parameters groundDragFactor double The amount of drag provided by the current ground. (Default: 0.3) Returns double HandleHandAnimations(float) protected virtual void HandleHandAnimations(float dt) Parameters dt float Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long InChunkIndex3d) Parameters properties EntityProperties api ICoreAPI InChunkIndex3d long IsEyesSubmerged() Are the eyes of this entity submerged in liquid? public bool IsEyesSubmerged() Returns bool OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Called when an entity has interacted with this entity public override void OnInteract(EntityAgent byEntity, ItemSlot slot, Vec3d hitPosition, EnumInteractMode mode) Parameters byEntity EntityAgent slot ItemSlot hitPosition Vec3d Relative position on the entites hitbox where the entity interacted at mode EnumInteractMode 0 = attack, 1 = interact OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Called by the blockschematic loader so that you may fix any blockid/itemid mappings against the mapping of the savegame, if you store any collectibles in this blockentity. Note: Some vanilla blocks resolve randomized contents in this method. Hint: Use itemstack.FixMapping() to do the job for you. public override void OnLoadCollectibleMappings(IWorldAccessor worldForResolve, Dictionary oldBlockIdMapping, Dictionary oldItemIdMapping, int schematicSeed, bool resolveImports) Parameters worldForResolve IWorldAccessor oldBlockIdMapping Dictionary oldItemIdMapping Dictionary schematicSeed int If you need some sort of randomness consistency accross an imported schematic, you can use this value resolveImports bool Turn it off to spawn structures as they are. For example, in this mode, instead of traders, their meta spawners will spawn OnNoPath(Vec3d) Called when the path finder does not find a path to given target public void OnNoPath(Vec3d target) Parameters target Vec3d OnStoreCollectibleMappings(Dictionary, Dictionary) Called by the worldedit schematic exporter so that it can also export the mappings of items/blocks stored inside blockentities public override void OnStoreCollectibleMappings(Dictionary blockIdMapping, Dictionary itemIdMapping) Parameters blockIdMapping Dictionary itemIdMapping Dictionary OnTesselation(ref Shape, string) Called by EntityShapeRenderer.cs before tesselating the entity shape public override void OnTesselation(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public override bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage ReceiveSaturation(float, EnumFoodCategory, float, float) Recieves the saturation from a food source. public virtual void ReceiveSaturation(float saturation, EnumFoodCategory foodCat = EnumFoodCategory.Unknown, float saturationLossDelay = 10, float nutritionGainMultiplier = 1) Parameters saturation float The amount of saturation recieved. foodCat EnumFoodCategory The cat of food... err Category of food. saturationLossDelay float The delay before the loss of saturation nutritionGainMultiplier float SetHeadPositionToWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected override void SetHeadPositionToWatchedAttributes() ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool ShouldReceiveSaturation(float, EnumFoodCategory, float, float) Whether or not the target should recieve saturation. public virtual bool ShouldReceiveSaturation(float saturation, EnumFoodCategory foodCat = EnumFoodCategory.Unknown, float saturationLossDelay = 10, float nutritionGainMultiplier = 1) Parameters saturation float The amount of saturation recieved. foodCat EnumFoodCategory The cat of food... err Category of food. saturationLossDelay float The delay before the loss of saturation nutritionGainMultiplier float Returns bool SpawnFloatingSediment(IAsyncParticleManager) protected virtual void SpawnFloatingSediment(IAsyncParticleManager manager) Parameters manager IAsyncParticleManager SpawnSnowStepParticles() protected virtual void SpawnSnowStepParticles() StopHandAnims() public virtual void StopHandAnims() ToBytes(BinaryWriter, bool) Serializes the slots contents to be stored in the SaveGame public override void ToBytes(BinaryWriter writer, bool forClient) Parameters writer BinaryWriter forClient bool TryGiveItemStack(ItemStack) Called when something tries to given an itemstack to this entity public override bool TryGiveItemStack(ItemStack itemstack) Parameters itemstack ItemStack Returns bool TryMount(IMountable) Attempts to mount the player on a target. public virtual bool TryMount(IMountable onmount) Parameters onmount IMountable The mount to mount Returns bool Whether it was mounted or not. TryStopHandAction(bool, EnumItemUseCancelReason) Attempts to stop the hand action. public virtual bool TryStopHandAction(bool isCancel, EnumItemUseCancelReason cancelReason = EnumItemUseCancelReason.ReleasedMouse) Parameters isCancel bool Whether or not the action is cancelled or stopped. cancelReason EnumItemUseCancelReason The reason for stopping the action. Returns bool Whether the stop was cancelled or not. TryUnmount() Attempts to un-mount the player. public bool TryUnmount() Returns bool Whether or not unmounting was successful UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes() WalkInventory(OnInventorySlot) This walks the inventory for the entity agent. public virtual void WalkInventory(OnInventorySlot handler) Parameters handler OnInventorySlot the event to fire while walking the inventory. addGearToShape(ItemSlot, Shape, string) protected virtual Shape addGearToShape(ItemSlot slot, Shape entityShape, string shapePathForLogging) Parameters slot ItemSlot entityShape Shape shapePathForLogging string Returns Shape addGearToShape(ref Shape, string) protected Shape addGearToShape(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string Returns Shape doMount(IMountable) protected virtual void doMount(IMountable mountable) Parameters mountable IMountable onAnimControls(AnimationMetaData, bool, bool) protected virtual bool onAnimControls(AnimationMetaData anim, bool wasActive, bool nowActive) Parameters anim AnimationMetaData wasActive bool nowActive bool Returns bool updateMountedState() protected virtual void updateMountedState()" + "keywords": "Class EntityAgent Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll A goal-directed entity which observes and acts upon an environment public class EntityAgent : Entity Inheritance object RegistryObject Entity EntityAgent Derived EntityHumanoid Inherited Members Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.IsInteractable Entity.SwimmingOffsetY Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.MaterialDensity Entity.LightHsv Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnFallToGround(double) Entity.OnCollided() Entity.OnCollideWithLiquid() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnEntityDespawn(EntityDespawnData) Entity.OnExitedLiquid() Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnReceivedServerAnimations(int[], int, float[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.UpdateAnimationDebugAttributes() Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.GetName() Entity.GetInfoText() Entity.StartAnimation(string) Entity.StopAnimation(string) RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityAgent() public EntityAgent() Fields AllowDespawn Whether or not the entity is allowed to despawn (Default: true) public bool AllowDespawn Field Value bool CurrentControls public EnumEntityActivity CurrentControls Field Value EnumEntityActivity DeadNotify True if all clients have to be informed about this entities death. Set to false once all clients have been notified public bool DeadNotify Field Value bool controls protected EntityControls controls Field Value EntityControls hideClothing public bool hideClothing Field Value bool insideBlock updated by GetWalkSpeedMultiplier() protected Block insideBlock Field Value Block insidePos updated by GetWalkSpeedMultiplier() protected BlockPos insidePos Field Value BlockPos servercontrols protected EntityControls servercontrols Field Value EntityControls Properties ActiveHandItemSlot public virtual ItemSlot ActiveHandItemSlot { get; } Property Value ItemSlot BodyYaw The yaw of the agents body public virtual float BodyYaw { get; set; } Property Value float BodyYawServer The yaw of the agents body on the client, retrieved from the server (BehaviorInterpolatePosition lerps this value and sets BodyYaw) public virtual float BodyYawServer { get; set; } Property Value float Controls The controls for this entity. public EntityControls Controls { get; } Property Value EntityControls GearInventory The inventory of the entity agent. public virtual IInventory GearInventory { get; set; } Property Value IInventory HerdId Unique identifier for a herd public long HerdId { get; set; } Property Value long IsCreature Used by AItasks for perfomance. When searching for nearby entities we distinguish between (A) Creatures and (B) Inanimate entitie. Inanimate entities are items on the ground, projectiles, armor stands, rafts, falling blocks etc Note 1: Dead creatures / corpses count as a Creature. EntityPlayer is a Creature of course. Note 2: Straw Dummy we count as a Creature, because weapons can target it and bees can attack it. In contrast, Armor Stand we count as Inanimate, because nothing should ever attack or target it. public override bool IsCreature { get; } Property Value bool LeftHandItemSlot Item in the left hand slot of the entity agent. public virtual ItemSlot LeftHandItemSlot { get; set; } Property Value ItemSlot MountedOn public IMountable MountedOn { get; protected set; } Property Value IMountable RightHandItemSlot Item in the right hand slot of the entity agent. public virtual ItemSlot RightHandItemSlot { get; set; } Property Value ItemSlot ServerControls The server controls for this entity public EntityControls ServerControls { get; } Property Value EntityControls ShouldDespawn Whether or not the entity should despawn. public override bool ShouldDespawn { get; } Property Value bool Methods DidAttack(DamageSource, EntityAgent) public virtual void DidAttack(DamageSource source, EntityAgent targetEntity) Parameters source DamageSource targetEntity EntityAgent Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool GetHeadPositionFromWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected override void GetHeadPositionFromWatchedAttributes() GetWalkSpeedMultiplier(double) Gets the walk speed multiplier. public virtual double GetWalkSpeedMultiplier(double groundDragFactor = 0.3) Parameters groundDragFactor double The amount of drag provided by the current ground. (Default: 0.3) Returns double HandleHandAnimations(float) protected virtual void HandleHandAnimations(float dt) Parameters dt float Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long InChunkIndex3d) Parameters properties EntityProperties api ICoreAPI InChunkIndex3d long IsEyesSubmerged() Are the eyes of this entity submerged in liquid? public bool IsEyesSubmerged() Returns bool OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Called when an entity has interacted with this entity public override void OnInteract(EntityAgent byEntity, ItemSlot slot, Vec3d hitPosition, EnumInteractMode mode) Parameters byEntity EntityAgent slot ItemSlot hitPosition Vec3d Relative position on the entites hitbox where the entity interacted at mode EnumInteractMode 0 = attack, 1 = interact OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Called by the blockschematic loader so that you may fix any blockid/itemid mappings against the mapping of the savegame, if you store any collectibles in this blockentity. Note: Some vanilla blocks resolve randomized contents in this method. Hint: Use itemstack.FixMapping() to do the job for you. public override void OnLoadCollectibleMappings(IWorldAccessor worldForResolve, Dictionary oldBlockIdMapping, Dictionary oldItemIdMapping, int schematicSeed, bool resolveImports) Parameters worldForResolve IWorldAccessor oldBlockIdMapping Dictionary oldItemIdMapping Dictionary schematicSeed int If you need some sort of randomness consistency accross an imported schematic, you can use this value resolveImports bool Turn it off to spawn structures as they are. For example, in this mode, instead of traders, their meta spawners will spawn OnNoPath(Vec3d) Called when the path finder does not find a path to given target public void OnNoPath(Vec3d target) Parameters target Vec3d OnStoreCollectibleMappings(Dictionary, Dictionary) Called by the worldedit schematic exporter so that it can also export the mappings of items/blocks stored inside blockentities public override void OnStoreCollectibleMappings(Dictionary blockIdMapping, Dictionary itemIdMapping) Parameters blockIdMapping Dictionary itemIdMapping Dictionary OnTesselation(ref Shape, string) Called by EntityShapeRenderer.cs before tesselating the entity shape public override void OnTesselation(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public override bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage ReceiveSaturation(float, EnumFoodCategory, float, float) Recieves the saturation from a food source. public virtual void ReceiveSaturation(float saturation, EnumFoodCategory foodCat = EnumFoodCategory.Unknown, float saturationLossDelay = 10, float nutritionGainMultiplier = 1) Parameters saturation float The amount of saturation recieved. foodCat EnumFoodCategory The cat of food... err Category of food. saturationLossDelay float The delay before the loss of saturation nutritionGainMultiplier float SetHeadPositionToWatchedAttributes() Relevant only for entities with heads, implemented in EntityAgent. Other sub-classes of Entity (if not EntityAgent) should similarly override this if the headYaw/headPitch are relevant to them protected override void SetHeadPositionToWatchedAttributes() ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool ShouldReceiveSaturation(float, EnumFoodCategory, float, float) Whether or not the target should recieve saturation. public virtual bool ShouldReceiveSaturation(float saturation, EnumFoodCategory foodCat = EnumFoodCategory.Unknown, float saturationLossDelay = 10, float nutritionGainMultiplier = 1) Parameters saturation float The amount of saturation recieved. foodCat EnumFoodCategory The cat of food... err Category of food. saturationLossDelay float The delay before the loss of saturation nutritionGainMultiplier float Returns bool SpawnFloatingSediment(IAsyncParticleManager) protected virtual void SpawnFloatingSediment(IAsyncParticleManager manager) Parameters manager IAsyncParticleManager SpawnSnowStepParticles() protected virtual void SpawnSnowStepParticles() ToBytes(BinaryWriter, bool) Serializes the slots contents to be stored in the SaveGame public override void ToBytes(BinaryWriter writer, bool forClient) Parameters writer BinaryWriter forClient bool TryGiveItemStack(ItemStack) Called when something tries to given an itemstack to this entity public override bool TryGiveItemStack(ItemStack itemstack) Parameters itemstack ItemStack Returns bool TryMount(IMountable) Attempts to mount the player on a target. public virtual bool TryMount(IMountable onmount) Parameters onmount IMountable The mount to mount Returns bool Whether it was mounted or not. TryStopHandAction(bool, EnumItemUseCancelReason) Attempts to stop the hand action. public virtual bool TryStopHandAction(bool isCancel, EnumItemUseCancelReason cancelReason = EnumItemUseCancelReason.ReleasedMouse) Parameters isCancel bool Whether or not the action is cancelled or stopped. cancelReason EnumItemUseCancelReason The reason for stopping the action. Returns bool Whether the stop was cancelled or not. TryUnmount() Attempts to un-mount the player. public bool TryUnmount() Returns bool Whether or not unmounting was successful UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes() WalkInventory(OnInventorySlot) This walks the inventory for the entity agent. public virtual void WalkInventory(OnInventorySlot handler) Parameters handler OnInventorySlot the event to fire while walking the inventory. addGearToShape(ItemSlot, Shape, string) protected virtual Shape addGearToShape(ItemSlot slot, Shape entityShape, string shapePathForLogging) Parameters slot ItemSlot entityShape Shape shapePathForLogging string Returns Shape addGearToShape(ref Shape, string) protected Shape addGearToShape(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string Returns Shape doMount(IMountable) protected virtual void doMount(IMountable mountable) Parameters mountable IMountable onAnimControls(AnimationMetaData, bool, bool) protected virtual bool onAnimControls(AnimationMetaData anim, bool wasActive, bool nowActive) Parameters anim AnimationMetaData wasActive bool nowActive bool Returns bool updateMountedState() protected virtual void updateMountedState()" }, "api/Vintagestory.API.Common.EntityBehaviorNameTag.html": { "href": "api/Vintagestory.API.Common.EntityBehaviorNameTag.html", @@ -2197,7 +2197,7 @@ "api/Vintagestory.API.Common.EntityChunky.html": { "href": "api/Vintagestory.API.Common.EntityChunky.html", "title": "Class EntityChunky | VintageStory API", - "keywords": "Class EntityChunky Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityChunky : Entity Inheritance object RegistryObject Entity EntityChunky Inherited Members Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.IsCreature Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.MaterialDensity Entity.LightHsv Entity.ShouldDespawn Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.TryGiveItemStack(ItemStack) Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnTesselation(ref Shape, string) Entity.OnFallToGround(double) Entity.OnCollided() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnExitedLiquid() Entity.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.ToBytes(BinaryWriter, bool) Entity.SetHeadPositionToWatchedAttributes() Entity.GetHeadPositionFromWatchedAttributes() Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Entity.GetName() Entity.GetInfoText() RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityChunky() public EntityChunky() Fields blocks protected IMiniDimension blocks Field Value IMiniDimension subDimensionIndex Used to map chunks from load/save game and server-client packets to this specific entity. The position of saved chunks will include a reference to this index protected int subDimensionIndex Field Value int Properties ApplyGravity If gravity should applied to this entity public override bool ApplyGravity { get; } Property Value bool IsInteractable Whether or not the EntityChunky is interactable. public override bool IsInteractable { get; } Property Value bool SwimmingOffsetY Used for passive physics simulation, together with the MaterialDensity to check how deep in the water the entity should float public override double SwimmingOffsetY { get; } Property Value double Methods AssociateWithDimension(IMiniDimension) public void AssociateWithDimension(IMiniDimension blocks) Parameters blocks IMiniDimension CreateAndLinkWithDimension(ICoreServerAPI, IMiniDimension) public static EntityChunky CreateAndLinkWithDimension(ICoreServerAPI sapi, IMiniDimension dimension) Parameters sapi ICoreServerAPI dimension IMiniDimension Returns EntityChunky Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long chunkindex3d) Parameters properties EntityProperties api ICoreAPI chunkindex3d long OnCollideWithLiquid() Called when the entity got in touch with a liquid public override void OnCollideWithLiquid() OnEntityDespawn(EntityDespawnData) Called when the entity despawns public override void OnEntityDespawn(EntityDespawnData despawn) Parameters despawn EntityDespawnData OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnReceivedServerAnimations(int[], int, float[]) public override void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] OnReceivedServerPos(bool) Called by client when a new server pos arrived public override void OnReceivedServerPos(bool isTeleport) Parameters isTeleport bool ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public override bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool StartAnimation(string) Starts the animation for the entity. public override void StartAnimation(string code) Parameters code string StopAnimation(string) stops the animation for the entity. public override void StopAnimation(string code) Parameters code string UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes()" + "keywords": "Class EntityChunky Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityChunky : Entity Inheritance object RegistryObject Entity EntityChunky Inherited Members Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.IsCreature Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.MaterialDensity Entity.LightHsv Entity.ShouldDespawn Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.TryGiveItemStack(ItemStack) Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnTesselation(ref Shape, string) Entity.OnFallToGround(double) Entity.OnCollided() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnExitedLiquid() Entity.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.UpdateAnimationDebugAttributes() Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.ToBytes(BinaryWriter, bool) Entity.SetHeadPositionToWatchedAttributes() Entity.GetHeadPositionFromWatchedAttributes() Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Entity.GetName() Entity.GetInfoText() RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityChunky() public EntityChunky() Fields blocks protected IMiniDimension blocks Field Value IMiniDimension subDimensionIndex Used to map chunks from load/save game and server-client packets to this specific entity. The position of saved chunks will include a reference to this index protected int subDimensionIndex Field Value int Properties ApplyGravity If gravity should applied to this entity public override bool ApplyGravity { get; } Property Value bool IsInteractable Whether or not the EntityChunky is interactable. public override bool IsInteractable { get; } Property Value bool SwimmingOffsetY Used for passive physics simulation, together with the MaterialDensity to check how deep in the water the entity should float public override double SwimmingOffsetY { get; } Property Value double Methods AssociateWithDimension(IMiniDimension) public void AssociateWithDimension(IMiniDimension blocks) Parameters blocks IMiniDimension CreateAndLinkWithDimension(ICoreServerAPI, IMiniDimension) public static EntityChunky CreateAndLinkWithDimension(ICoreServerAPI sapi, IMiniDimension dimension) Parameters sapi ICoreServerAPI dimension IMiniDimension Returns EntityChunky Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long chunkindex3d) Parameters properties EntityProperties api ICoreAPI chunkindex3d long OnCollideWithLiquid() Called when the entity got in touch with a liquid public override void OnCollideWithLiquid() OnEntityDespawn(EntityDespawnData) Called when the entity despawns public override void OnEntityDespawn(EntityDespawnData despawn) Parameters despawn EntityDespawnData OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnReceivedServerAnimations(int[], int, float[]) public override void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] OnReceivedServerPos(bool) Called by client when a new server pos arrived public override void OnReceivedServerPos(bool isTeleport) Parameters isTeleport bool ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public override bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool StartAnimation(string) Starts the animation for the entity. public override void StartAnimation(string code) Parameters code string StopAnimation(string) stops the animation for the entity. public override void StopAnimation(string code) Parameters code string UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes()" }, "api/Vintagestory.API.Common.EntityControls.html": { "href": "api/Vintagestory.API.Common.EntityControls.html", @@ -2237,12 +2237,12 @@ "api/Vintagestory.API.Common.EntityHumanoid.html": { "href": "api/Vintagestory.API.Common.EntityHumanoid.html", "title": "Class EntityHumanoid | VintageStory API", - "keywords": "Class EntityHumanoid Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityHumanoid : EntityAgent Inheritance object RegistryObject Entity EntityAgent EntityHumanoid Derived EntityPlayer Inherited Members EntityAgent.IsCreature EntityAgent.BodyYaw EntityAgent.BodyYawServer EntityAgent.DeadNotify EntityAgent.HerdId EntityAgent.controls EntityAgent.servercontrols EntityAgent.MountedOn EntityAgent.CurrentControls EntityAgent.LeftHandItemSlot EntityAgent.RightHandItemSlot EntityAgent.ActiveHandItemSlot EntityAgent.GearInventory EntityAgent.ShouldDespawn EntityAgent.AllowDespawn EntityAgent.Initialize(EntityProperties, ICoreAPI, long) EntityAgent.Controls EntityAgent.ServerControls EntityAgent.IsEyesSubmerged() EntityAgent.TryMount(IMountable) EntityAgent.updateMountedState() EntityAgent.doMount(IMountable) EntityAgent.TryUnmount() EntityAgent.Die(EnumDespawnReason, DamageSource) EntityAgent.OnNoPath(Vec3d) EntityAgent.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) EntityAgent.DidAttack(DamageSource, EntityAgent) EntityAgent.ShouldReceiveDamage(DamageSource, float) EntityAgent.ReceiveDamage(DamageSource, float) EntityAgent.ReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.ShouldReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.OnGameTick(float) EntityAgent.SpawnSnowStepParticles() EntityAgent.SpawnFloatingSediment(IAsyncParticleManager) EntityAgent.onAnimControls(AnimationMetaData, bool, bool) EntityAgent.HandleHandAnimations(float) EntityAgent.StopHandAnims() EntityAgent.insideBlock EntityAgent.insidePos EntityAgent.GetWalkSpeedMultiplier(double) EntityAgent.ToBytes(BinaryWriter, bool) EntityAgent.FromBytes(BinaryReader, bool) EntityAgent.SetHeadPositionToWatchedAttributes() EntityAgent.GetHeadPositionFromWatchedAttributes() EntityAgent.TryStopHandAction(bool, EnumItemUseCancelReason) EntityAgent.WalkInventory(OnInventorySlot) EntityAgent.UpdateDebugAttributes() EntityAgent.OnTesselation(ref Shape, string) EntityAgent.hideClothing EntityAgent.addGearToShape(ref Shape, string) EntityAgent.addGearToShape(ItemSlot, Shape, string) EntityAgent.TryGiveItemStack(ItemStack) EntityAgent.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) EntityAgent.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.IsInteractable Entity.SwimmingOffsetY Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.MaterialDensity Entity.LightHsv Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnFallToGround(double) Entity.OnCollided() Entity.OnCollideWithLiquid() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnEntityDespawn(EntityDespawnData) Entity.OnExitedLiquid() Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnReceivedServerAnimations(int[], int, float[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.GetName() Entity.GetInfoText() Entity.StartAnimation(string) Entity.StopAnimation(string) RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" + "keywords": "Class EntityHumanoid Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityHumanoid : EntityAgent Inheritance object RegistryObject Entity EntityAgent EntityHumanoid Derived EntityPlayer Inherited Members EntityAgent.IsCreature EntityAgent.BodyYaw EntityAgent.BodyYawServer EntityAgent.DeadNotify EntityAgent.HerdId EntityAgent.controls EntityAgent.servercontrols EntityAgent.MountedOn EntityAgent.CurrentControls EntityAgent.LeftHandItemSlot EntityAgent.RightHandItemSlot EntityAgent.ActiveHandItemSlot EntityAgent.GearInventory EntityAgent.ShouldDespawn EntityAgent.AllowDespawn EntityAgent.Initialize(EntityProperties, ICoreAPI, long) EntityAgent.Controls EntityAgent.ServerControls EntityAgent.IsEyesSubmerged() EntityAgent.TryMount(IMountable) EntityAgent.updateMountedState() EntityAgent.doMount(IMountable) EntityAgent.TryUnmount() EntityAgent.Die(EnumDespawnReason, DamageSource) EntityAgent.OnNoPath(Vec3d) EntityAgent.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) EntityAgent.DidAttack(DamageSource, EntityAgent) EntityAgent.ShouldReceiveDamage(DamageSource, float) EntityAgent.ReceiveDamage(DamageSource, float) EntityAgent.ReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.ShouldReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.OnGameTick(float) EntityAgent.SpawnSnowStepParticles() EntityAgent.SpawnFloatingSediment(IAsyncParticleManager) EntityAgent.onAnimControls(AnimationMetaData, bool, bool) EntityAgent.HandleHandAnimations(float) EntityAgent.insideBlock EntityAgent.insidePos EntityAgent.GetWalkSpeedMultiplier(double) EntityAgent.ToBytes(BinaryWriter, bool) EntityAgent.FromBytes(BinaryReader, bool) EntityAgent.SetHeadPositionToWatchedAttributes() EntityAgent.GetHeadPositionFromWatchedAttributes() EntityAgent.TryStopHandAction(bool, EnumItemUseCancelReason) EntityAgent.WalkInventory(OnInventorySlot) EntityAgent.UpdateDebugAttributes() EntityAgent.OnTesselation(ref Shape, string) EntityAgent.hideClothing EntityAgent.addGearToShape(ref Shape, string) EntityAgent.addGearToShape(ItemSlot, Shape, string) EntityAgent.TryGiveItemStack(ItemStack) EntityAgent.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) EntityAgent.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.IsInteractable Entity.SwimmingOffsetY Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.MaterialDensity Entity.LightHsv Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnFallToGround(double) Entity.OnCollided() Entity.OnCollideWithLiquid() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnEntityDespawn(EntityDespawnData) Entity.OnExitedLiquid() Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnReceivedServerAnimations(int[], int, float[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.UpdateAnimationDebugAttributes() Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.GetName() Entity.GetInfoText() Entity.StartAnimation(string) Entity.StopAnimation(string) RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" }, "api/Vintagestory.API.Common.EntityItem.html": { "href": "api/Vintagestory.API.Common.EntityItem.html", "title": "Class EntityItem | VintageStory API", - "keywords": "Class EntityItem Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityItem : Entity Inheritance object RegistryObject Entity EntityItem Inherited Members Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.IsCreature Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.ShouldDespawn Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.TryGiveItemStack(ItemStack) Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnTesselation(ref Shape, string) Entity.OnFallToGround(double) Entity.OnCollided() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnExitedLiquid() Entity.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.ToBytes(BinaryWriter, bool) Entity.SetHeadPositionToWatchedAttributes() Entity.GetHeadPositionFromWatchedAttributes() Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Entity.GetName() Entity.GetInfoText() RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityItem() public EntityItem() Fields Slot public EntityItemSlot Slot Field Value EntityItemSlot itemSpawnedMilliseconds public long itemSpawnedMilliseconds Field Value long Properties ByPlayerUid The UID of the player that dropped this itemstack. public string ByPlayerUid { get; set; } Property Value string IsInteractable Whether or not the EntityItem is interactable. public override bool IsInteractable { get; } Property Value bool Itemstack The itemstack attached to this Item Entity. public ItemStack Itemstack { get; set; } Property Value ItemStack LightHsv Get the HSV colors for the lighting. public override byte[] LightHsv { get; } Property Value byte[] MaterialDensity Returns the material density of the item. public override float MaterialDensity { get; } Property Value float SwimmingOffsetY Used for passive physics simulation, together with the MaterialDensity to check how deep in the water the entity should float public override double SwimmingOffsetY { get; } Property Value double Methods CanCollect(Entity) Should return true if this item can be picked up as an itemstack public override bool CanCollect(Entity byEntity) Parameters byEntity Entity Returns bool Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool FromItemstack(ItemStack, Vec3d, Vec3d, IWorldAccessor) Builds and spawns an EntityItem from a provided ItemStack. public static EntityItem FromItemstack(ItemStack itemstack, Vec3d position, Vec3d velocity, IWorldAccessor world) Parameters itemstack ItemStack The contents of the EntityItem position Vec3d The position of the EntityItem velocity Vec3d The velocity of the EntityItem world IWorldAccessor The world the EntityItems preside in. Returns EntityItem A freshly baked EntityItem to introduce to the world. Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long chunkindex3d) Parameters properties EntityProperties api ICoreAPI chunkindex3d long OnCollected(Entity) Called by BehaviorCollectEntities of nearby entities. Should return the itemstack that should be collected. If the item stack was fully picked up, BehaviorCollectEntities will kill this entity public override ItemStack OnCollected(Entity byEntity) Parameters byEntity Entity Returns ItemStack OnCollideWithLiquid() Called when the entity got in touch with a liquid public override void OnCollideWithLiquid() OnEntityDespawn(EntityDespawnData) Called when the entity despawns public override void OnEntityDespawn(EntityDespawnData despawn) Parameters despawn EntityDespawnData OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnReceivedServerAnimations(int[], int, float[]) public override void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public override bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool StartAnimation(string) Starts the animation for the entity. public override void StartAnimation(string code) Parameters code string StopAnimation(string) stops the animation for the entity. public override void StopAnimation(string code) Parameters code string UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes()" + "keywords": "Class EntityItem Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityItem : Entity Inheritance object RegistryObject Entity EntityItem Inherited Members Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.IsCreature Entity.PhysicsUpdateWatcher Entity.AnimManager Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.ShouldDespawn Entity.StoreWithChunk Entity.AlwaysActive Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.LadderFixDelta Entity.OnHurt(DamageSource, float) Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.TryGiveItemStack(ItemStack) Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportToDouble(double, double, double, Action) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnAsyncParticleTick(float, IAsyncParticleManager) Entity.Ignite() Entity.OnTesselation(ref Shape, string) Entity.OnFallToGround(double) Entity.OnCollided() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnExitedLiquid() Entity.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedClientPacket(IServerPlayer, int, byte[]) Entity.OnReceivedServerPacket(int, byte[]) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.UpdateAnimationDebugAttributes() Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.ToBytes(BinaryWriter, bool) Entity.SetHeadPositionToWatchedAttributes() Entity.GetHeadPositionFromWatchedAttributes() Entity.Revive() Entity.PlayEntitySound(string, IPlayer, bool, float) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) Entity.GetName() Entity.GetInfoText() RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityItem() public EntityItem() Fields Slot public EntityItemSlot Slot Field Value EntityItemSlot itemSpawnedMilliseconds public long itemSpawnedMilliseconds Field Value long Properties ByPlayerUid The UID of the player that dropped this itemstack. public string ByPlayerUid { get; set; } Property Value string IsInteractable Whether or not the EntityItem is interactable. public override bool IsInteractable { get; } Property Value bool Itemstack The itemstack attached to this Item Entity. public ItemStack Itemstack { get; set; } Property Value ItemStack LightHsv Get the HSV colors for the lighting. public override byte[] LightHsv { get; } Property Value byte[] MaterialDensity Returns the material density of the item. public override float MaterialDensity { get; } Property Value float SwimmingOffsetY Used for passive physics simulation, together with the MaterialDensity to check how deep in the water the entity should float public override double SwimmingOffsetY { get; } Property Value double Methods CanCollect(Entity) Should return true if this item can be picked up as an itemstack public override bool CanCollect(Entity byEntity) Parameters byEntity Entity Returns bool Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool FromItemstack(ItemStack, Vec3d, Vec3d, IWorldAccessor) Builds and spawns an EntityItem from a provided ItemStack. public static EntityItem FromItemstack(ItemStack itemstack, Vec3d position, Vec3d velocity, IWorldAccessor world) Parameters itemstack ItemStack The contents of the EntityItem position Vec3d The position of the EntityItem velocity Vec3d The velocity of the EntityItem world IWorldAccessor The world the EntityItems preside in. Returns EntityItem A freshly baked EntityItem to introduce to the world. Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long chunkindex3d) Parameters properties EntityProperties api ICoreAPI chunkindex3d long OnCollected(Entity) Called by BehaviorCollectEntities of nearby entities. Should return the itemstack that should be collected. If the item stack was fully picked up, BehaviorCollectEntities will kill this entity public override ItemStack OnCollected(Entity byEntity) Parameters byEntity Entity Returns ItemStack OnCollideWithLiquid() Called when the entity got in touch with a liquid public override void OnCollideWithLiquid() OnEntityDespawn(EntityDespawnData) Called when the entity despawns public override void OnEntityDespawn(EntityDespawnData despawn) Parameters despawn EntityDespawnData OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnReceivedServerAnimations(int[], int, float[]) public override void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] ReceiveDamage(DamageSource, float) Called when the entity should be receiving damage from given source public override bool ReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool True if the entity actually received damage ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool StartAnimation(string) Starts the animation for the entity. public override void StartAnimation(string code) Parameters code string StopAnimation(string) stops the animation for the entity. public override void StopAnimation(string code) Parameters code string UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes()" }, "api/Vintagestory.API.Common.EntityItemSlot.html": { "href": "api/Vintagestory.API.Common.EntityItemSlot.html", @@ -2252,7 +2252,7 @@ "api/Vintagestory.API.Common.EntityPlayer.html": { "href": "api/Vintagestory.API.Common.EntityPlayer.html", "title": "Class EntityPlayer | VintageStory API", - "keywords": "Class EntityPlayer Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityPlayer : EntityHumanoid Inheritance object RegistryObject Entity EntityAgent EntityHumanoid EntityPlayer Inherited Members EntityAgent.IsCreature EntityAgent.BodyYawServer EntityAgent.DeadNotify EntityAgent.HerdId EntityAgent.controls EntityAgent.servercontrols EntityAgent.MountedOn EntityAgent.CurrentControls EntityAgent.ActiveHandItemSlot EntityAgent.AllowDespawn EntityAgent.Controls EntityAgent.ServerControls EntityAgent.IsEyesSubmerged() EntityAgent.updateMountedState() EntityAgent.doMount(IMountable) EntityAgent.TryUnmount() EntityAgent.OnNoPath(Vec3d) EntityAgent.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) EntityAgent.DidAttack(DamageSource, EntityAgent) EntityAgent.ReceiveDamage(DamageSource, float) EntityAgent.ReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.ShouldReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.SpawnSnowStepParticles() EntityAgent.SpawnFloatingSediment(IAsyncParticleManager) EntityAgent.StopHandAnims() EntityAgent.insideBlock EntityAgent.insidePos EntityAgent.ToBytes(BinaryWriter, bool) EntityAgent.SetHeadPositionToWatchedAttributes() EntityAgent.GetHeadPositionFromWatchedAttributes() EntityAgent.hideClothing EntityAgent.addGearToShape(ref Shape, string) EntityAgent.addGearToShape(ItemSlot, Shape, string) EntityAgent.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) EntityAgent.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.PhysicsUpdateWatcher Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.SwimmingOffsetY Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.MaterialDensity Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnCollided() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnEntityDespawn(EntityDespawnData) Entity.OnExitedLiquid() Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedServerAnimations(int[], int, float[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.StartAnimation(string) Entity.StopAnimation(string) RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityPlayer() public EntityPlayer() Fields BlockSelection The block or blocks currently selected by the player public BlockSelection BlockSelection Field Value BlockSelection BodyYawLimits public Vec2f BodyYawLimits Field Value Vec2f CameraPos The camera position of the player's view. Set only by the game client. public Vec3d CameraPos Field Value Vec3d DeathReason The reason the player died (if the player did die). Set only by the game server. public DamageSource DeathReason Field Value DamageSource EntitySelection The entity or entities selected by the player public EntitySelection EntitySelection Field Value EntitySelection HeadYawLimits public Vec2f HeadYawLimits Field Value Vec2f OnCanSpawnNearby Called whenever the game wants to spawn new creatures around the player. Called only by the game server. public CanSpawnNearbyDelegate OnCanSpawnNearby Field Value CanSpawnNearbyDelegate PrevFrameCanStandUp public bool PrevFrameCanStandUp Field Value bool PreviousBlockSelection The block position previously selected by the player public BlockPos PreviousBlockSelection Field Value BlockPos WalkPitch The pitch the player currently wants to move to. Only relevant while swimming. Value set by the PlayerPhysics system. Set by the game client and server. public float WalkPitch Field Value float WalkYaw The yaw the player currently wants to walk towards to. Value set by the PlayerPhysics system. Set by the game client and server. public float WalkYaw Field Value float entityListForPartitioning Used to assist if this EntityPlayer needs to be repartitioned public List entityListForPartitioning Field Value List selfClimateCond public ClimateCondition selfClimateCond Field Value ClimateCondition selfNowShadowPass public bool selfNowShadowPass Field Value bool sidewaysSwivelAngle public float sidewaysSwivelAngle Field Value float talkTypeByAnimation protected static Dictionary talkTypeByAnimation Field Value Dictionary talkUtil public EntityTalkUtil talkUtil Field Value EntityTalkUtil walkSpeed This is not walkspeed per se, it is the walkspeed modifier as a result of armor and other gear. It corresponds to Stats.GetBlended(\"walkspeed\") and gets updated every tick public float walkSpeed Field Value float Properties AlwaysActive Whether this entity should always stay in Active model, regardless on how far away other player are public override bool AlwaysActive { get; } Property Value bool AnimManager Server simulated animations. Only takes care of stopping animations once they're done Set and Called by the Entities ServerSystem public override IAnimationManager AnimManager { get; set; } Property Value IAnimationManager BodyYaw The yaw of the agents body public override float BodyYaw { get; set; } Property Value float GearInventory The players wearables. Available on the client and the server. public override IInventory GearInventory { get; } Property Value IInventory IsInteractable Should return true when this entity should be interactable by a player or other entities public override bool IsInteractable { get; } Property Value bool LadderFixDelta A small offset used to prevent players from clipping through the blocks above ladders: relevant if the entity's collision box is sometimes adjusted by the game code public override double LadderFixDelta { get; } Property Value double LastReviveTotalHours public double LastReviveTotalHours { get; set; } Property Value double LeftHandItemSlot The playres left hand contents. Available on the client and the server. public override ItemSlot LeftHandItemSlot { get; } Property Value ItemSlot LightHsv If set, the entity will emit dynamic light public override byte[] LightHsv { get; } Property Value byte[] OtherAnimManager public IAnimationManager OtherAnimManager { get; } Property Value IAnimationManager Player The base player attached to this EntityPlayer. public IPlayer Player { get; } Property Value IPlayer PlayerUID The player's internal Universal ID. Available on the client and the server. public string PlayerUID { get; } Property Value string RightHandItemSlot The players right hand contents. Available on the client and the server. public override ItemSlot RightHandItemSlot { get; } Property Value ItemSlot ShouldDespawn Whether or not the entity should despawn. public override bool ShouldDespawn { get; } Property Value bool StoreWithChunk Players and whatever the player rides on will be stored seperatly public override bool StoreWithChunk { get; } Property Value bool TpAnimManager public IAnimationManager TpAnimManager { get; } Property Value IAnimationManager Methods CanSpawnNearby(EntityProperties, Vec3d, RuntimeSpawnConditions) public virtual bool CanSpawnNearby(EntityProperties type, Vec3d spawnPosition, RuntimeSpawnConditions sc) Parameters type EntityProperties spawnPosition Vec3d sc RuntimeSpawnConditions Returns bool Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool GetInfoText() gets the info text for the entity. public override string GetInfoText() Returns string GetInsideLegsBlockSoundSource(BlockPos) public virtual Block GetInsideLegsBlockSoundSource(BlockPos tmpPos) Parameters tmpPos BlockPos Returns Block GetInsideTorsoBlockSoundSource(BlockPos) public virtual Block GetInsideTorsoBlockSoundSource(BlockPos tmpPos) Parameters tmpPos BlockPos Returns Block GetName() Gets the name for this entity public override string GetName() Returns string GetNearestBlockSoundSource(BlockPos, double, int, bool) Returns null if there is no nearby sound source public Block GetNearestBlockSoundSource(BlockPos tmpPos, double yOffset, int blockLayer, bool usecollisionboxes) Parameters tmpPos BlockPos Might get intentionally modified if the nearest sound source the player is intersecting with is in an adjacent block yOffset double blockLayer int usecollisionboxes bool Returns Block GetWalkSpeedMultiplier(double) Gets the walk speed multiplier. public override double GetWalkSpeedMultiplier(double groundDragFactor = 0.3) Parameters groundDragFactor double The amount of drag provided by the current ground. (Default: 0.3) Returns double HandleHandAnimations(float) protected override void HandleHandAnimations(float dt) Parameters dt float Ignite() public override void Ignite() Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long chunkindex3d) Parameters properties EntityProperties api ICoreAPI chunkindex3d long OnAsyncParticleTick(float, IAsyncParticleManager) public override void OnAsyncParticleTick(float dt, IAsyncParticleManager manager) Parameters dt float manager IAsyncParticleManager OnCollideWithLiquid() Called when the entity got in touch with a liquid public override void OnCollideWithLiquid() OnFallToGround(double) Called when the entity collided vertically public override void OnFallToGround(double motionY) Parameters motionY double OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnHurt(DamageSource, float) Called when the entity got hurt. On the client side, dmgSource is null public override void OnHurt(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float OnReceivedClientPacket(IServerPlayer, int, byte[]) Called when on the client side something called capi.Network.SendEntityPacket() public override void OnReceivedClientPacket(IServerPlayer player, int packetid, byte[] data) Parameters player IServerPlayer packetid int data byte[] OnReceivedServerPacket(int, byte[]) Called when on the server side something called sapi.Network.SendEntityPacket() Packetid = 1 is used for teleporting Packetid = 2 is used for BehaviorHarvestable public override void OnReceivedServerPacket(int packetid, byte[] data) Parameters packetid int data byte[] OnSelfBeforeRender(float) public void OnSelfBeforeRender(float dt) Parameters dt float OnTesselation(ref Shape, string) Called by EntityShapeRenderer.cs before tesselating the entity shape public override void OnTesselation(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string PlayEntitySound(string, IPlayer, bool, float) Assumes that it is only called on the server public override void PlayEntitySound(string type, IPlayer dualCallByPlayer = null, bool randomizePitch = true, float range = 24) Parameters type string dualCallByPlayer IPlayer randomizePitch bool range float PlayInsideSound(IPlayer) public virtual bool PlayInsideSound(IPlayer player) Parameters player IPlayer Returns bool PlayStepSound(IPlayer, bool) public virtual void PlayStepSound(IPlayer player, bool playingInsideSound) Parameters player IPlayer playingInsideSound bool Revive() Revives the entity and heals for 9999. public override void Revive() SetCurrentlyControlledPlayer() Sets the current player. public void SetCurrentlyControlledPlayer() ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool TeleportToDouble(double, double, double, Action) Teleports the entity to given position. Actual teleport is delayed until target chunk is loaded. public override void TeleportToDouble(double x, double y, double z, Action onTeleported = null) Parameters x double y double z double onTeleported Action TryGiveItemStack(ItemStack) Called when something tries to given an itemstack to this entity public override bool TryGiveItemStack(ItemStack itemstack) Parameters itemstack ItemStack Returns bool TryMount(IMountable) Attempts to mount the player on a target. public override bool TryMount(IMountable onmount) Parameters onmount IMountable The mount to mount Returns bool Whether it was mounted or not. TryStopHandAction(bool, EnumItemUseCancelReason) Attempts to stop the hand action. public override bool TryStopHandAction(bool forceStop, EnumItemUseCancelReason cancelReason = EnumItemUseCancelReason.ReleasedMouse) Parameters forceStop bool cancelReason EnumItemUseCancelReason The reason for stopping the action. Returns bool Whether the stop was cancelled or not. UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes() UpdatePartitioning() public void UpdatePartitioning() WalkInventory(OnInventorySlot) This walks the inventory for the entity agent. public override void WalkInventory(OnInventorySlot handler) Parameters handler OnInventorySlot the event to fire while walking the inventory. canPlayEdgeSitAnim() protected bool canPlayEdgeSitAnim() Returns bool getSoundSourceBlockAt(Cuboidd, BlockPos, int, bool) protected Block getSoundSourceBlockAt(Cuboidd entityBox, BlockPos tmpPos, int blockLayer, bool usecollisionboxes) Parameters entityBox Cuboidd tmpPos BlockPos blockLayer int usecollisionboxes bool Returns Block onAnimControls(AnimationMetaData, bool, bool) protected override bool onAnimControls(AnimationMetaData anim, bool wasActive, bool nowActive) Parameters anim AnimationMetaData wasActive bool nowActive bool Returns bool protectEyesFromWind(float) protected void protectEyesFromWind(float dt) Parameters dt float Events OnFootStep Set this to hook into the foot step sound creator thingy. Currently used by the armor system to create armor step sounds. Called by the game client and server. public event Action OnFootStep Event Type Action OnImpact Called when the player falls onto the ground. Called by the game client and server. public event Action OnImpact Event Type Action" + "keywords": "Class EntityPlayer Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class EntityPlayer : EntityHumanoid Inheritance object RegistryObject Entity EntityAgent EntityHumanoid EntityPlayer Inherited Members EntityAgent.IsCreature EntityAgent.BodyYawServer EntityAgent.DeadNotify EntityAgent.HerdId EntityAgent.controls EntityAgent.servercontrols EntityAgent.MountedOn EntityAgent.CurrentControls EntityAgent.ActiveHandItemSlot EntityAgent.AllowDespawn EntityAgent.Controls EntityAgent.ServerControls EntityAgent.IsEyesSubmerged() EntityAgent.updateMountedState() EntityAgent.doMount(IMountable) EntityAgent.TryUnmount() EntityAgent.OnNoPath(Vec3d) EntityAgent.OnInteract(EntityAgent, ItemSlot, Vec3d, EnumInteractMode) EntityAgent.DidAttack(DamageSource, EntityAgent) EntityAgent.ReceiveDamage(DamageSource, float) EntityAgent.ReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.ShouldReceiveSaturation(float, EnumFoodCategory, float, float) EntityAgent.SpawnSnowStepParticles() EntityAgent.SpawnFloatingSediment(IAsyncParticleManager) EntityAgent.HandleHandAnimations(float) EntityAgent.insideBlock EntityAgent.insidePos EntityAgent.ToBytes(BinaryWriter, bool) EntityAgent.SetHeadPositionToWatchedAttributes() EntityAgent.GetHeadPositionFromWatchedAttributes() EntityAgent.hideClothing EntityAgent.addGearToShape(ref Shape, string) EntityAgent.addGearToShape(ItemSlot, Shape, string) EntityAgent.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int, bool) EntityAgent.OnStoreCollectibleMappings(Dictionary, Dictionary) Entity.SplashParticleProps Entity.FireParticleProps Entity.FloatingSedimentParticles Entity.AirBubbleParticleProps Entity.bioLumiParticles Entity.bioLumiNoise Entity.OnInitialized Entity.World Entity.Api Entity.PhysicsUpdateWatcher Entity.ActivityTimers Entity.Pos Entity.ServerPos Entity.PreviousServerPos Entity.PositionBeforeFalling Entity.InChunkIndex3d Entity.CollisionBox Entity.OriginCollisionBox Entity.SelectionBox Entity.OriginSelectionBox Entity.Teleporting Entity.IsTeleport Entity.EntityId Entity.SimulationRange Entity.ClimbingOnFace Entity.ClimbingIntoFace Entity.ClimbingOnCollBox Entity.OnGround Entity.FeetInLiquid Entity.IsOnFire Entity.resetLightHsv Entity.InLava Entity.InLavaBeginTotalMs Entity.OnFireBeginTotalMs Entity.Swimming Entity.CollidedVertically Entity.CollidedHorizontally Entity.State Entity.DespawnReason Entity.WatchedAttributes Entity.DebugAttributes Entity.Attributes Entity.IsRendered Entity.IsShadowRendered Entity.HurtColor Entity.Stats Entity.touchDistanceSq Entity.ownPosRepulse Entity.hasRepulseBehavior Entity.packet Entity.Properties Entity.SidedProperties Entity.SwimmingOffsetY Entity.Collided Entity.SidedPos Entity.LocalEyePos Entity.ApplyGravity Entity.MaterialDensity Entity.Alive Entity.alive Entity.minRangeToClient Entity.IdleSoundChanceModifier Entity.RenderColor Entity.AfterInitialized(bool) Entity.TriggerOnInitialized() Entity.DoInitialActiveCheck(ICoreAPI) Entity.updateColSelBoxes() Entity.updateOnFire() Entity.GetDrops(IWorldAccessor, BlockPos, IPlayer) Entity.TeleportTo(int, int, int) Entity.TeleportTo(Vec3d) Entity.TeleportTo(BlockPos) Entity.TeleportTo(EntityPos, Action) Entity.ApplyFireDamage(float) Entity.DieInLava() Entity.OnCollided() Entity.SpawnWaterMovementParticles(float, double, double, double) Entity.OnEntityLoaded() Entity.OnEntitySpawn() Entity.OnEntityDespawn(EntityDespawnData) Entity.OnExitedLiquid() Entity.GetInteractionHelp(IClientWorldAccessor, EntitySelection, IClientPlayer) Entity.OnReceivedServerPos(bool) Entity.OnReceivedServerAnimations(int[], int, float[]) Entity.OnCollected(Entity) Entity.OnStateChanged(EnumEntityState) Entity.SetCollisionBox(float, float) Entity.SetSelectionBox(float, float) Entity.AddBehavior(EntityBehavior) Entity.RemoveBehavior(EntityBehavior) Entity.HasBehavior(string) Entity.HasBehavior() Entity.GetBehavior(string) Entity.GetBehavior() Entity.IsActivityRunning(string) Entity.RemainingActivityTime(string) Entity.SetActivityRunning(string, int) Entity.UpdateAnimationDebugAttributes() Entity.FromBytes(BinaryReader, bool, Dictionary) Entity.CanCollect(Entity) Entity.Notify(string, object) Entity.WillExport(BlockPos) Entity.DidImportOrExport(BlockPos) Entity.OnLoadCollectibleMappings(IWorldAccessor, Dictionary, Dictionary, int) Entity.StartAnimation(string) Entity.StopAnimation(string) RegistryObject.Code RegistryObject.VariantStrict RegistryObject.Variant RegistryObject.Class RegistryObject.CodeWithPath(string) RegistryObject.CodeWithoutParts(int) RegistryObject.CodeEndWithoutParts(int) RegistryObject.CodeWithParts(params string[]) RegistryObject.CodeWithParts(string) RegistryObject.CodeWithVariant(string, string) RegistryObject.CodeWithVariants(Dictionary) RegistryObject.CodeWithVariants(string[], string[]) RegistryObject.CodeWithPart(string, int) RegistryObject.LastCodePart(int) RegistryObject.FirstCodePart(int) RegistryObject.WildCardMatch(AssetLocation[]) RegistryObject.WildCardMatch(AssetLocation) RegistryObject.WildCardMatch(string[]) RegistryObject.WildCardMatch(string) RegistryObject.FillPlaceHolder(AssetLocation, OrderedDictionary) RegistryObject.FillPlaceHolder(string, OrderedDictionary) RegistryObject.FillPlaceHolder(string, string, string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors EntityPlayer() public EntityPlayer() Fields BlockSelection The block or blocks currently selected by the player public BlockSelection BlockSelection Field Value BlockSelection BodyYawLimits public Vec2f BodyYawLimits Field Value Vec2f CameraPos The camera position of the player's view. Set only by the game client. public Vec3d CameraPos Field Value Vec3d DeathReason The reason the player died (if the player did die). Set only by the game server. public DamageSource DeathReason Field Value DamageSource EntitySelection The entity or entities selected by the player public EntitySelection EntitySelection Field Value EntitySelection HeadYawLimits public Vec2f HeadYawLimits Field Value Vec2f OnCanSpawnNearby Called whenever the game wants to spawn new creatures around the player. Called only by the game server. public CanSpawnNearbyDelegate OnCanSpawnNearby Field Value CanSpawnNearbyDelegate PrevFrameCanStandUp public bool PrevFrameCanStandUp Field Value bool PreviousBlockSelection The block position previously selected by the player public BlockPos PreviousBlockSelection Field Value BlockPos WalkPitch The pitch the player currently wants to move to. Only relevant while swimming. Value set by the PlayerPhysics system. Set by the game client and server. public float WalkPitch Field Value float WalkYaw The yaw the player currently wants to walk towards to. Value set by the PlayerPhysics system. Set by the game client and server. public float WalkYaw Field Value float entityListForPartitioning Used to assist if this EntityPlayer needs to be repartitioned public List entityListForPartitioning Field Value List selfClimateCond public ClimateCondition selfClimateCond Field Value ClimateCondition selfNowShadowPass public bool selfNowShadowPass Field Value bool sidewaysSwivelAngle public float sidewaysSwivelAngle Field Value float talkTypeByAnimation protected static Dictionary talkTypeByAnimation Field Value Dictionary talkUtil public EntityTalkUtil talkUtil Field Value EntityTalkUtil walkSpeed This is not walkspeed per se, it is the walkspeed modifier as a result of armor and other gear. It corresponds to Stats.GetBlended(\"walkspeed\") and gets updated every tick public float walkSpeed Field Value float Properties AlwaysActive Whether this entity should always stay in Active model, regardless on how far away other player are public override bool AlwaysActive { get; } Property Value bool AnimManager Server simulated animations. Only takes care of stopping animations once they're done Set and Called by the Entities ServerSystem public override IAnimationManager AnimManager { get; set; } Property Value IAnimationManager BodyYaw The yaw of the agents body public override float BodyYaw { get; set; } Property Value float GearInventory The players wearables. Available on the client and the server. public override IInventory GearInventory { get; } Property Value IInventory IsInteractable Should return true when this entity should be interactable by a player or other entities public override bool IsInteractable { get; } Property Value bool LadderFixDelta A small offset used to prevent players from clipping through the blocks above ladders: relevant if the entity's collision box is sometimes adjusted by the game code public override double LadderFixDelta { get; } Property Value double LastReviveTotalHours public double LastReviveTotalHours { get; set; } Property Value double LeftHandItemSlot The playres left hand contents. Available on the client and the server. public override ItemSlot LeftHandItemSlot { get; } Property Value ItemSlot LightHsv If set, the entity will emit dynamic light public override byte[] LightHsv { get; } Property Value byte[] OtherAnimManager public IAnimationManager OtherAnimManager { get; } Property Value IAnimationManager Player The base player attached to this EntityPlayer. public IPlayer Player { get; } Property Value IPlayer PlayerUID The player's internal Universal ID. Available on the client and the server. public string PlayerUID { get; } Property Value string RightHandItemSlot The players right hand contents. Available on the client and the server. public override ItemSlot RightHandItemSlot { get; } Property Value ItemSlot ShouldDespawn Whether or not the entity should despawn. public override bool ShouldDespawn { get; } Property Value bool StoreWithChunk Players and whatever the player rides on will be stored seperatly public override bool StoreWithChunk { get; } Property Value bool TpAnimManager public IAnimationManager TpAnimManager { get; } Property Value IAnimationManager Methods CanSpawnNearby(EntityProperties, Vec3d, RuntimeSpawnConditions) public virtual bool CanSpawnNearby(EntityProperties type, Vec3d spawnPosition, RuntimeSpawnConditions sc) Parameters type EntityProperties spawnPosition Vec3d sc RuntimeSpawnConditions Returns bool Die(EnumDespawnReason, DamageSource) Makes the entity despawn. Entities only drop something on EnumDespawnReason.Death public override void Die(EnumDespawnReason reason = EnumDespawnReason.Death, DamageSource damageSourceForDeath = null) Parameters reason EnumDespawnReason damageSourceForDeath DamageSource FromBytes(BinaryReader, bool) Loads the entity from a stored byte array from the SaveGame public override void FromBytes(BinaryReader reader, bool forClient) Parameters reader BinaryReader forClient bool GetInfoText() gets the info text for the entity. public override string GetInfoText() Returns string GetInsideLegsBlockSoundSource(BlockPos) public virtual Block GetInsideLegsBlockSoundSource(BlockPos tmpPos) Parameters tmpPos BlockPos Returns Block GetInsideTorsoBlockSoundSource(BlockPos) public virtual Block GetInsideTorsoBlockSoundSource(BlockPos tmpPos) Parameters tmpPos BlockPos Returns Block GetName() Gets the name for this entity public override string GetName() Returns string GetNearestBlockSoundSource(BlockPos, double, int, bool) Returns null if there is no nearby sound source public Block GetNearestBlockSoundSource(BlockPos tmpPos, double yOffset, int blockLayer, bool usecollisionboxes) Parameters tmpPos BlockPos Might get intentionally modified if the nearest sound source the player is intersecting with is in an adjacent block yOffset double blockLayer int usecollisionboxes bool Returns Block GetWalkSpeedMultiplier(double) Gets the walk speed multiplier. public override double GetWalkSpeedMultiplier(double groundDragFactor = 0.3) Parameters groundDragFactor double The amount of drag provided by the current ground. (Default: 0.3) Returns double HandleSeraphHandAnimations(float) public void HandleSeraphHandAnimations(float dt) Parameters dt float Ignite() public override void Ignite() Initialize(EntityProperties, ICoreAPI, long) Called when this entity got created or loaded public override void Initialize(EntityProperties properties, ICoreAPI api, long chunkindex3d) Parameters properties EntityProperties api ICoreAPI chunkindex3d long OnAsyncParticleTick(float, IAsyncParticleManager) public override void OnAsyncParticleTick(float dt, IAsyncParticleManager manager) Parameters dt float manager IAsyncParticleManager OnCollideWithLiquid() Called when the entity got in touch with a liquid public override void OnCollideWithLiquid() OnFallToGround(double) Called when the entity collided vertically public override void OnFallToGround(double motionY) Parameters motionY double OnGameTick(float) Called every 1/75 second public override void OnGameTick(float dt) Parameters dt float OnHurt(DamageSource, float) Called when the entity got hurt. On the client side, dmgSource is null public override void OnHurt(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float OnReceivedClientPacket(IServerPlayer, int, byte[]) Called when on the client side something called capi.Network.SendEntityPacket() public override void OnReceivedClientPacket(IServerPlayer player, int packetid, byte[] data) Parameters player IServerPlayer packetid int data byte[] OnReceivedServerPacket(int, byte[]) Called when on the server side something called sapi.Network.SendEntityPacket() Packetid = 1 is used for teleporting Packetid = 2 is used for BehaviorHarvestable public override void OnReceivedServerPacket(int packetid, byte[] data) Parameters packetid int data byte[] OnSelfBeforeRender(float) public void OnSelfBeforeRender(float dt) Parameters dt float OnTesselation(ref Shape, string) Called by EntityShapeRenderer.cs before tesselating the entity shape public override void OnTesselation(ref Shape entityShape, string shapePathForLogging) Parameters entityShape Shape shapePathForLogging string PlayEntitySound(string, IPlayer, bool, float) Assumes that it is only called on the server public override void PlayEntitySound(string type, IPlayer dualCallByPlayer = null, bool randomizePitch = true, float range = 24) Parameters type string dualCallByPlayer IPlayer randomizePitch bool range float PlayInsideSound(IPlayer) public virtual bool PlayInsideSound(IPlayer player) Parameters player IPlayer Returns bool PlayStepSound(IPlayer, bool) public virtual void PlayStepSound(IPlayer player, bool playingInsideSound) Parameters player IPlayer playingInsideSound bool Revive() Revives the entity and heals for 9999. public override void Revive() SetCurrentlyControlledPlayer() Sets the current player. public void SetCurrentlyControlledPlayer() ShouldReceiveDamage(DamageSource, float) Should return true if the entity can get damaged by given damageSource. Is called by ReceiveDamage. public override bool ShouldReceiveDamage(DamageSource damageSource, float damage) Parameters damageSource DamageSource damage float Returns bool TeleportToDouble(double, double, double, Action) Teleports the entity to given position. Actual teleport is delayed until target chunk is loaded. public override void TeleportToDouble(double x, double y, double z, Action onTeleported = null) Parameters x double y double z double onTeleported Action TryGiveItemStack(ItemStack) Called when something tries to given an itemstack to this entity public override bool TryGiveItemStack(ItemStack itemstack) Parameters itemstack ItemStack Returns bool TryMount(IMountable) Attempts to mount the player on a target. public override bool TryMount(IMountable onmount) Parameters onmount IMountable The mount to mount Returns bool Whether it was mounted or not. TryStopHandAction(bool, EnumItemUseCancelReason) Attempts to stop the hand action. public override bool TryStopHandAction(bool forceStop, EnumItemUseCancelReason cancelReason = EnumItemUseCancelReason.ReleasedMouse) Parameters forceStop bool cancelReason EnumItemUseCancelReason The reason for stopping the action. Returns bool Whether the stop was cancelled or not. UpdateDebugAttributes() Updates the DebugAttributes tree public override void UpdateDebugAttributes() UpdatePartitioning() public void UpdatePartitioning() WalkInventory(OnInventorySlot) This walks the inventory for the entity agent. public override void WalkInventory(OnInventorySlot handler) Parameters handler OnInventorySlot the event to fire while walking the inventory. canPlayEdgeSitAnim() protected bool canPlayEdgeSitAnim() Returns bool getSoundSourceBlockAt(Cuboidd, BlockPos, int, bool) protected Block getSoundSourceBlockAt(Cuboidd entityBox, BlockPos tmpPos, int blockLayer, bool usecollisionboxes) Parameters entityBox Cuboidd tmpPos BlockPos blockLayer int usecollisionboxes bool Returns Block onAnimControls(AnimationMetaData, bool, bool) protected override bool onAnimControls(AnimationMetaData anim, bool wasActive, bool nowActive) Parameters anim AnimationMetaData wasActive bool nowActive bool Returns bool protectEyesFromWind(float) protected void protectEyesFromWind(float dt) Parameters dt float Events OnFootStep Set this to hook into the foot step sound creator thingy. Currently used by the armor system to create armor step sounds. Called by the game client and server. public event Action OnFootStep Event Type Action OnImpact Called when the player falls onto the ground. Called by the game client and server. public event Action OnImpact Event Type Action" }, "api/Vintagestory.API.Common.EntitySelection.html": { "href": "api/Vintagestory.API.Common.EntitySelection.html", @@ -3427,7 +3427,7 @@ "api/Vintagestory.API.Common.PlayerAnimationManager.html": { "href": "api/Vintagestory.API.Common.PlayerAnimationManager.html", "title": "Class PlayerAnimationManager | VintageStory API", - "keywords": "Class PlayerAnimationManager Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class PlayerAnimationManager : AnimationManager, IAnimationManager, IDisposable Inheritance object AnimationManager PlayerAnimationManager Implements IAnimationManager IDisposable Inherited Members AnimationManager.api AnimationManager.capi AnimationManager.AnimationsDirty AnimationManager.Animator AnimationManager.HeadController AnimationManager.ActiveAnimationsByAnimCode AnimationManager.Triggers AnimationManager.entity AnimationManager.OnServerTick(float) AnimationManager.Dispose() AnimationManager.OnAnimationStopped(string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields UseFpAnmations public bool UseFpAnmations Field Value bool lastActiveHeldHitAnimation protected string lastActiveHeldHitAnimation Field Value string lastActiveHeldReadyAnimation protected string lastActiveHeldReadyAnimation Field Value string lastActiveHeldUseAnimation protected string lastActiveHeldUseAnimation Field Value string lastActiveLeftHeldIdleAnimation protected string lastActiveLeftHeldIdleAnimation Field Value string lastActiveRightHeldIdleAnimation protected string lastActiveRightHeldIdleAnimation Field Value string lastRunningHeldHitAnimation public string lastRunningHeldHitAnimation Field Value string lastRunningHeldUseAnimation public string lastRunningHeldUseAnimation Field Value string Methods FromAttributes(ITreeAttribute, string) Loads the entity from a stored byte array from the SaveGame public override void FromAttributes(ITreeAttribute tree, string version) Parameters tree ITreeAttribute version string HeldHitAnimChanged(string) public bool HeldHitAnimChanged(string nowHeldRightHitAnim) Parameters nowHeldRightHitAnim string Returns bool HeldRightReadyAnimChanged(string) public bool HeldRightReadyAnimChanged(string nowHeldRightReadyAnim) Parameters nowHeldRightReadyAnim string Returns bool HeldUseAnimChanged(string) public bool HeldUseAnimChanged(string nowHeldRightUseAnim) Parameters nowHeldRightUseAnim string Returns bool Init(ICoreAPI, Entity) Initializes the Animation Manager. public override void Init(ICoreAPI api, Entity entity) Parameters api ICoreAPI The Core API. entity Entity The entity this manager is attached to. IsAnimationActive(params string[]) public override bool IsAnimationActive(params string[] anims) Parameters anims string[] Returns bool IsAnimationActiveOrRunning(string) public bool IsAnimationActiveOrRunning(string anim) Parameters anim string Returns bool IsAnimationMostlyRunning(string) protected bool IsAnimationMostlyRunning(string anim) Parameters anim string Returns bool IsHeldHitActive() public bool IsHeldHitActive() Returns bool IsHeldHitAuthorative() public bool IsHeldHitAuthorative() Returns bool IsHeldUseActive() public bool IsHeldUseActive() Returns bool IsLeftHeldActive() public bool IsLeftHeldActive() Returns bool IsRightHeldActive() public bool IsRightHeldActive() Returns bool IsRightHeldReadyActive() public bool IsRightHeldReadyActive() Returns bool LeftHeldIdleChanged(string) public bool LeftHeldIdleChanged(string nowHeldLeftIdleAnim) Parameters nowHeldLeftIdleAnim string Returns bool OnActiveSlotChanged(ItemSlot) public void OnActiveSlotChanged(ItemSlot slot) Parameters slot ItemSlot OnClientFrame(float) The event fired each time the client ticks. public override void OnClientFrame(float dt) Parameters dt float OnReceivedServerAnimations(int[], int, float[]) The event fired when the manager recieves the server animations. public override void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] RegisterFrameCallback(AnimFrameCallback) public override void RegisterFrameCallback(AnimFrameCallback trigger) Parameters trigger AnimFrameCallback ResetAnimation(string) If given animation is running, will set its progress to the first animation frame public override void ResetAnimation(string animCode) Parameters animCode string RightHeldIdleChanged(string) public bool RightHeldIdleChanged(string nowHeldRightIdleAnim) Parameters nowHeldRightIdleAnim string Returns bool StartAnimation(string) Start a new animation defined in the entity config file. If it's not defined, it won't play. Use StartAnimation(AnimationMetaData animdata) to circumvent the entity config anim data. public override bool StartAnimation(string configCode) Parameters configCode string Anim config code, not the animation code! Returns bool StartAnimation(AnimationMetaData) Client: Starts given animation Server: Sends all active anims to all connected clients then purges the ActiveAnimationsByAnimCode list public override bool StartAnimation(AnimationMetaData animdata) Parameters animdata AnimationMetaData Returns bool StartHeldHitAnim(string) public void StartHeldHitAnim(string animCode) Parameters animCode string StartHeldReadyAnim(string, bool) public void StartHeldReadyAnim(string heldReadyAnim, bool force = false) Parameters heldReadyAnim string force bool StartHeldUseAnim(string) public void StartHeldUseAnim(string animCode) Parameters animCode string StartLeftHeldIdleAnim(string) public void StartLeftHeldIdleAnim(string animCode) Parameters animCode string StartRightHeldIdleAnim(string) public void StartRightHeldIdleAnim(string animCode) Parameters animCode string StopAnimation(string) Stops given animation public override void StopAnimation(string code) Parameters code string StopHeldAttackAnim() public void StopHeldAttackAnim() StopHeldReadyAnim() public void StopHeldReadyAnim() StopHeldUseAnim() public void StopHeldUseAnim() StopLeftHeldIdleAnim() public void StopLeftHeldIdleAnim() StopRightHeldIdleAnim() public void StopRightHeldIdleAnim() StopSelfAnimation(string) public void StopSelfAnimation(string code) Parameters code string ToAttributes(ITreeAttribute, bool) Serializes the slots contents to be stored in the SaveGame public override void ToAttributes(ITreeAttribute tree, bool forClient) Parameters tree ITreeAttribute forClient bool onReceivedServerAnimation(AnimationMetaData) protected override void onReceivedServerAnimation(AnimationMetaData animmetadata) Parameters animmetadata AnimationMetaData" + "keywords": "Class PlayerAnimationManager Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll public class PlayerAnimationManager : AnimationManager, IAnimationManager, IDisposable Inheritance object AnimationManager PlayerAnimationManager Implements IAnimationManager IDisposable Inherited Members AnimationManager.api AnimationManager.capi AnimationManager.AnimationsDirty AnimationManager.Animator AnimationManager.HeadController AnimationManager.ActiveAnimationsByAnimCode AnimationManager.Triggers AnimationManager.entity AnimationManager.OnServerTick(float) AnimationManager.Dispose() AnimationManager.OnAnimationStopped(string) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields UseFpAnmations public bool UseFpAnmations Field Value bool lastActiveHeldHitAnimation protected string lastActiveHeldHitAnimation Field Value string lastActiveHeldReadyAnimation protected string lastActiveHeldReadyAnimation Field Value string lastActiveHeldUseAnimation protected string lastActiveHeldUseAnimation Field Value string lastActiveLeftHeldIdleAnimation protected string lastActiveLeftHeldIdleAnimation Field Value string lastActiveRightHeldIdleAnimation protected string lastActiveRightHeldIdleAnimation Field Value string lastRunningHeldHitAnimation public string lastRunningHeldHitAnimation Field Value string lastRunningHeldUseAnimation public string lastRunningHeldUseAnimation Field Value string Methods FromAttributes(ITreeAttribute, string) Loads the entity from a stored byte array from the SaveGame public override void FromAttributes(ITreeAttribute tree, string version) Parameters tree ITreeAttribute version string HeldHitAnimChanged(string) public bool HeldHitAnimChanged(string nowHeldRightHitAnim) Parameters nowHeldRightHitAnim string Returns bool HeldRightReadyAnimChanged(string) public bool HeldRightReadyAnimChanged(string nowHeldRightReadyAnim) Parameters nowHeldRightReadyAnim string Returns bool HeldUseAnimChanged(string) public bool HeldUseAnimChanged(string nowHeldRightUseAnim) Parameters nowHeldRightUseAnim string Returns bool Init(ICoreAPI, Entity) Initializes the Animation Manager. public override void Init(ICoreAPI api, Entity entity) Parameters api ICoreAPI The Core API. entity Entity The entity this manager is attached to. IsAnimationActive(params string[]) public override bool IsAnimationActive(params string[] anims) Parameters anims string[] Returns bool IsAnimationActiveOrRunning(string, float) public bool IsAnimationActiveOrRunning(string anim, float untilProgress = 0.95) Parameters anim string untilProgress float Returns bool IsAnimationMostlyRunning(string, float) protected bool IsAnimationMostlyRunning(string anim, float untilProgress = 0.95) Parameters anim string untilProgress float Returns bool IsHeldHitActive(float) public bool IsHeldHitActive(float untilProgress = 0.95) Parameters untilProgress float Returns bool IsHeldHitAuthorative() public bool IsHeldHitAuthorative() Returns bool IsHeldUseActive() public bool IsHeldUseActive() Returns bool IsLeftHeldActive() public bool IsLeftHeldActive() Returns bool IsRightHeldActive() public bool IsRightHeldActive() Returns bool IsRightHeldReadyActive() public bool IsRightHeldReadyActive() Returns bool LeftHeldIdleChanged(string) public bool LeftHeldIdleChanged(string nowHeldLeftIdleAnim) Parameters nowHeldLeftIdleAnim string Returns bool OnActiveSlotChanged(ItemSlot) public void OnActiveSlotChanged(ItemSlot slot) Parameters slot ItemSlot OnClientFrame(float) The event fired each time the client ticks. public override void OnClientFrame(float dt) Parameters dt float OnReceivedServerAnimations(int[], int, float[]) The event fired when the manager recieves the server animations. public override void OnReceivedServerAnimations(int[] activeAnimations, int activeAnimationsCount, float[] activeAnimationSpeeds) Parameters activeAnimations int[] activeAnimationsCount int activeAnimationSpeeds float[] RegisterFrameCallback(AnimFrameCallback) public override void RegisterFrameCallback(AnimFrameCallback trigger) Parameters trigger AnimFrameCallback ResetAnimation(string) If given animation is running, will set its progress to the first animation frame public override void ResetAnimation(string animCode) Parameters animCode string RightHeldIdleChanged(string) public bool RightHeldIdleChanged(string nowHeldRightIdleAnim) Parameters nowHeldRightIdleAnim string Returns bool StartAnimation(string) Start a new animation defined in the entity config file. If it's not defined, it won't play. Use StartAnimation(AnimationMetaData animdata) to circumvent the entity config anim data. public override bool StartAnimation(string configCode) Parameters configCode string Anim config code, not the animation code! Returns bool StartAnimation(AnimationMetaData) Client: Starts given animation Server: Sends all active anims to all connected clients then purges the ActiveAnimationsByAnimCode list public override bool StartAnimation(AnimationMetaData animdata) Parameters animdata AnimationMetaData Returns bool StartHeldHitAnim(string) public void StartHeldHitAnim(string animCode) Parameters animCode string StartHeldReadyAnim(string, bool) public void StartHeldReadyAnim(string heldReadyAnim, bool force = false) Parameters heldReadyAnim string force bool StartHeldUseAnim(string) public void StartHeldUseAnim(string animCode) Parameters animCode string StartLeftHeldIdleAnim(string) public void StartLeftHeldIdleAnim(string animCode) Parameters animCode string StartRightHeldIdleAnim(string) public void StartRightHeldIdleAnim(string animCode) Parameters animCode string StopAnimation(string) Stops given animation public override void StopAnimation(string code) Parameters code string StopHeldAttackAnim() public void StopHeldAttackAnim() StopHeldReadyAnim() public void StopHeldReadyAnim() StopHeldUseAnim() public void StopHeldUseAnim() StopLeftHeldIdleAnim() public void StopLeftHeldIdleAnim() StopRightHeldIdleAnim() public void StopRightHeldIdleAnim() StopSelfAnimation(string) public void StopSelfAnimation(string code) Parameters code string ToAttributes(ITreeAttribute, bool) Serializes the slots contents to be stored in the SaveGame public override void ToAttributes(ITreeAttribute tree, bool forClient) Parameters tree ITreeAttribute forClient bool onReceivedServerAnimation(AnimationMetaData) protected override void onReceivedServerAnimation(AnimationMetaData animmetadata) Parameters animmetadata AnimationMetaData" }, "api/Vintagestory.API.Common.PlayerChatDelegate.html": { "href": "api/Vintagestory.API.Common.PlayerChatDelegate.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 = 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[]" + "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.5\" Field Value string ShortGameVersion Version number in the format: major.minor.revision[appendix] public const string ShortGameVersion = \"1.19.5-rc.1\" 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", @@ -4957,7 +4957,7 @@ "api/Vintagestory.API.Util.StringUtil.html": { "href": "api/Vintagestory.API.Util.StringUtil.html", "title": "Class StringUtil | VintageStory API", - "keywords": "Class StringUtil Namespace Vintagestory.API.Util Assembly VintagestoryAPI.dll public static class StringUtil Inheritance object StringUtil Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods CompareOrdinal(string, string) This should be used for every string comparison when ordering strings (except possibly in localised output to the user) in order to avoid any culture specific string comparison issues in certain languages (worst in the Thai language which has no spaces and treats punctuation marks as invisible) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static int CompareOrdinal(this string a, string b) Parameters a string b string Returns int ContainsFast(string, char) public static bool ContainsFast(this string value, char reference) Parameters value string reference char Returns bool ContainsFast(string, string) public static bool ContainsFast(this string value, string reference) Parameters value string reference string Returns bool CountChars(string, char) public static int CountChars(this string text, char c) Parameters text string c char Returns int EndsWithOrdinal(string, string) IMPORTANT! This method should be used for every EndsWith operation in our code (except possibly in localised output to the user). This is important in order to avoid any culture-specific different results even when examining strings in English, when the user machine's current culture is a different language (Known issue in the Thai language which has no spaces and treats punctuation marks as invisible, see https://github.com/dotnet/runtime/issues/59120) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static bool EndsWithOrdinal(this string a, string b) Parameters a string b string Returns bool EqualsFast(string, string) public static bool EqualsFast(this string value, string reference) Parameters value string reference string Returns bool FastStartsWith(string, string, int) public static bool FastStartsWith(string value, string reference, int len) Parameters value string reference string len int Returns bool IndexOfOrdinal(string, string) IMPORTANT! This method should be used for every IndexOf operation in our code (except possibly in localised output to the user). This is important in order to avoid any culture-specific different results even when indexing GLSL shader code or other code strings, etc., or other strings in English, when the current culture is a different language (Known issue in the Thai language which has no spaces and treats punctuation marks as invisible, see https://github.com/dotnet/runtime/issues/59120) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static int IndexOfOrdinal(this string a, string b) Parameters a string b string Returns int RemoveDiacritics(string) public static string RemoveDiacritics(this string stIn) Parameters stIn string Returns string RemoveFileEnding(string) public static string RemoveFileEnding(this string text) Parameters text string Returns string StartsWithFast(string, string) public static bool StartsWithFast(this string value, string reference) Parameters value string reference string Returns bool StartsWithFast(string, string, int) public static bool StartsWithFast(this string value, string reference, int offset) Parameters value string reference string offset int Returns bool StartsWithOrdinal(string, string) IMPORTANT! This method should be used for every StartsWith operation in our code (except possibly in localised output to the user). This is important in order to avoid any culture-specific different results even when examining strings in English, when the user machine's current culture is a different language (Known issue in the Thai language which has no spaces and treats punctuation marks as invisible, see https://github.com/dotnet/runtime/issues/59120) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static bool StartsWithOrdinal(this string a, string b) Parameters a string b string Returns bool ToBool(string, bool) public static bool ToBool(this string text, bool defaultValue = false) Parameters text string defaultValue bool Returns bool ToDouble(string, double) public static double ToDouble(this string text, double defaultValue = 0) Parameters text string defaultValue double Returns double ToDoubleOrNull(string, double?) public static double? ToDoubleOrNull(this string text, double? defaultValue = 0) Parameters text string defaultValue double? Returns double? ToFloat(string, float) public static float ToFloat(this string text, float defaultValue = 0) Parameters text string defaultValue float Returns float ToFloatOrNull(string, float?) public static float? ToFloatOrNull(this string text, float? defaultValue = 0) Parameters text string defaultValue float? Returns float? ToInt(string, int) public static int ToInt(this string text, int defaultValue = 0) Parameters text string defaultValue int Returns int ToLong(string, long) public static long ToLong(this string text, long defaultValue = 0) Parameters text string defaultValue long Returns long UcFirst(string) Convert the first character to an uppercase one public static string UcFirst(this string text) Parameters text string Returns string" + "keywords": "Class StringUtil Namespace Vintagestory.API.Util Assembly VintagestoryAPI.dll public static class StringUtil Inheritance object StringUtil Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods CompareOrdinal(string, string) This should be used for every string comparison when ordering strings (except possibly in localised output to the user) in order to avoid any culture specific string comparison issues in certain languages (worst in the Thai language which has no spaces and treats punctuation marks as invisible) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static int CompareOrdinal(this string a, string b) Parameters a string b string Returns int ContainsFast(string, char) public static bool ContainsFast(this string value, char reference) Parameters value string reference char Returns bool ContainsFast(string, string) public static bool ContainsFast(this string value, string reference) Parameters value string reference string Returns bool CountChars(string, char) public static int CountChars(this string text, char c) Parameters text string c char Returns int EndsWithOrdinal(string, string) IMPORTANT! This method should be used for every EndsWith operation in our code (except possibly in localised output to the user). This is important in order to avoid any culture-specific different results even when examining strings in English, when the user machine's current culture is a different language (Known issue in the Thai language which has no spaces and treats punctuation marks as invisible, see https://github.com/dotnet/runtime/issues/59120) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static bool EndsWithOrdinal(this string a, string b) Parameters a string b string Returns bool EqualsFast(string, string) public static bool EqualsFast(this string value, string reference) Parameters value string reference string Returns bool FastStartsWith(string, string, int) public static bool FastStartsWith(string value, string reference, int len) Parameters value string reference string len int Returns bool GetNonRandomizedHashCode(string) public static int GetNonRandomizedHashCode(this string str) Parameters str string Returns int IndexOfOrdinal(string, string) IMPORTANT! This method should be used for every IndexOf operation in our code (except possibly in localised output to the user). This is important in order to avoid any culture-specific different results even when indexing GLSL shader code or other code strings, etc., or other strings in English, when the current culture is a different language (Known issue in the Thai language which has no spaces and treats punctuation marks as invisible, see https://github.com/dotnet/runtime/issues/59120) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static int IndexOfOrdinal(this string a, string b) Parameters a string b string Returns int RemoveDiacritics(string) public static string RemoveDiacritics(this string stIn) Parameters stIn string Returns string RemoveFileEnding(string) public static string RemoveFileEnding(this string text) Parameters text string Returns string StartsWithFast(string, string) public static bool StartsWithFast(this string value, string reference) Parameters value string reference string Returns bool StartsWithFast(string, string, int) public static bool StartsWithFast(this string value, string reference, int offset) Parameters value string reference string offset int Returns bool StartsWithOrdinal(string, string) IMPORTANT! This method should be used for every StartsWith operation in our code (except possibly in localised output to the user). This is important in order to avoid any culture-specific different results even when examining strings in English, when the user machine's current culture is a different language (Known issue in the Thai language which has no spaces and treats punctuation marks as invisible, see https://github.com/dotnet/runtime/issues/59120) See also: https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings public static bool StartsWithOrdinal(this string a, string b) Parameters a string b string Returns bool ToBool(string, bool) public static bool ToBool(this string text, bool defaultValue = false) Parameters text string defaultValue bool Returns bool ToDouble(string, double) public static double ToDouble(this string text, double defaultValue = 0) Parameters text string defaultValue double Returns double ToDoubleOrNull(string, double?) public static double? ToDoubleOrNull(this string text, double? defaultValue = 0) Parameters text string defaultValue double? Returns double? ToFloat(string, float) public static float ToFloat(this string text, float defaultValue = 0) Parameters text string defaultValue float Returns float ToFloatOrNull(string, float?) public static float? ToFloatOrNull(this string text, float? defaultValue = 0) Parameters text string defaultValue float? Returns float? ToInt(string, int) public static int ToInt(this string text, int defaultValue = 0) Parameters text string defaultValue int Returns int ToLong(string, long) public static long ToLong(this string text, long defaultValue = 0) Parameters text string defaultValue long Returns long UcFirst(string) Convert the first character to an uppercase one public static string UcFirst(this string text) Parameters text string Returns string" }, "api/Vintagestory.API.Util.ThreadSafeRandom.html": { "href": "api/Vintagestory.API.Util.ThreadSafeRandom.html", diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index c6546dd4..699d764d 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -4596,6 +4596,15 @@ references: commentId: M:Vintagestory.API.Client.CairoFont.WhiteSmallishText fullName: Vintagestory.API.Client.CairoFont.WhiteSmallishText() nameWithType: CairoFont.WhiteSmallishText() +- uid: Vintagestory.API.Client.CairoFont.WhiteSmallishText(System.String) + name: WhiteSmallishText(string) + href: api/Vintagestory.API.Client.CairoFont.html#Vintagestory_API_Client_CairoFont_WhiteSmallishText_System_String_ + commentId: M:Vintagestory.API.Client.CairoFont.WhiteSmallishText(System.String) + name.vb: WhiteSmallishText(String) + fullName: Vintagestory.API.Client.CairoFont.WhiteSmallishText(string) + fullName.vb: Vintagestory.API.Client.CairoFont.WhiteSmallishText(String) + nameWithType: CairoFont.WhiteSmallishText(string) + nameWithType.vb: CairoFont.WhiteSmallishText(String) - uid: Vintagestory.API.Client.CairoFont.WhiteSmallishText* name: WhiteSmallishText href: api/Vintagestory.API.Client.CairoFont.html#Vintagestory_API_Client_CairoFont_WhiteSmallishText_ @@ -58270,6 +58279,19 @@ references: isSpec: "True" fullName: Vintagestory.API.Common.Entities.Entity.TryGiveItemStack nameWithType: Entity.TryGiveItemStack +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + name: UpdateAnimationDebugAttributes() + href: api/Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes + commentId: M:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes() + nameWithType: Entity.UpdateAnimationDebugAttributes() +- uid: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes* + name: UpdateAnimationDebugAttributes + href: api/Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateAnimationDebugAttributes_ + commentId: Overload:Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + isSpec: "True" + fullName: Vintagestory.API.Common.Entities.Entity.UpdateAnimationDebugAttributes + nameWithType: Entity.UpdateAnimationDebugAttributes - uid: Vintagestory.API.Common.Entities.Entity.UpdateDebugAttributes name: UpdateDebugAttributes() href: api/Vintagestory.API.Common.Entities.Entity.html#Vintagestory_API_Common_Entities_Entity_UpdateDebugAttributes @@ -61625,19 +61647,6 @@ references: isSpec: "True" fullName: Vintagestory.API.Common.EntityAgent.SpawnSnowStepParticles nameWithType: EntityAgent.SpawnSnowStepParticles -- uid: Vintagestory.API.Common.EntityAgent.StopHandAnims - name: StopHandAnims() - href: api/Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims - commentId: M:Vintagestory.API.Common.EntityAgent.StopHandAnims - fullName: Vintagestory.API.Common.EntityAgent.StopHandAnims() - nameWithType: EntityAgent.StopHandAnims() -- uid: Vintagestory.API.Common.EntityAgent.StopHandAnims* - name: StopHandAnims - href: api/Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_StopHandAnims_ - commentId: Overload:Vintagestory.API.Common.EntityAgent.StopHandAnims - isSpec: "True" - fullName: Vintagestory.API.Common.EntityAgent.StopHandAnims - nameWithType: EntityAgent.StopHandAnims - uid: Vintagestory.API.Common.EntityAgent.ToBytes(System.IO.BinaryWriter,System.Boolean) name: ToBytes(BinaryWriter, bool) href: api/Vintagestory.API.Common.EntityAgent.html#Vintagestory_API_Common_EntityAgent_ToBytes_System_IO_BinaryWriter_System_Boolean_ @@ -64017,22 +64026,22 @@ references: isSpec: "True" fullName: Vintagestory.API.Common.EntityPlayer.GetWalkSpeedMultiplier nameWithType: EntityPlayer.GetWalkSpeedMultiplier -- uid: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(System.Single) - name: HandleHandAnimations(float) - href: api/Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_HandleHandAnimations_System_Single_ - commentId: M:Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(System.Single) - name.vb: HandleHandAnimations(Single) - fullName: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(float) - fullName.vb: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations(Single) - nameWithType: EntityPlayer.HandleHandAnimations(float) - nameWithType.vb: EntityPlayer.HandleHandAnimations(Single) -- uid: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations* - name: HandleHandAnimations - href: api/Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_HandleHandAnimations_ - commentId: Overload:Vintagestory.API.Common.EntityPlayer.HandleHandAnimations - isSpec: "True" - fullName: Vintagestory.API.Common.EntityPlayer.HandleHandAnimations - nameWithType: EntityPlayer.HandleHandAnimations +- uid: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(System.Single) + name: HandleSeraphHandAnimations(float) + href: api/Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_HandleSeraphHandAnimations_System_Single_ + commentId: M:Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(System.Single) + name.vb: HandleSeraphHandAnimations(Single) + fullName: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(float) + fullName.vb: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations(Single) + nameWithType: EntityPlayer.HandleSeraphHandAnimations(float) + nameWithType.vb: EntityPlayer.HandleSeraphHandAnimations(Single) +- uid: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations* + name: HandleSeraphHandAnimations + href: api/Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_HandleSeraphHandAnimations_ + commentId: Overload:Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations + isSpec: "True" + fullName: Vintagestory.API.Common.EntityPlayer.HandleSeraphHandAnimations + nameWithType: EntityPlayer.HandleSeraphHandAnimations - uid: Vintagestory.API.Common.EntityPlayer.HeadYawLimits name: HeadYawLimits href: api/Vintagestory.API.Common.EntityPlayer.html#Vintagestory_API_Common_EntityPlayer_HeadYawLimits @@ -88927,15 +88936,15 @@ references: isSpec: "True" fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActive nameWithType: PlayerAnimationManager.IsAnimationActive -- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String) - name: IsAnimationActiveOrRunning(string) - href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationActiveOrRunning_System_String_ - commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String) - name.vb: IsAnimationActiveOrRunning(String) - fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(string) - fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(String) - nameWithType: PlayerAnimationManager.IsAnimationActiveOrRunning(string) - nameWithType.vb: PlayerAnimationManager.IsAnimationActiveOrRunning(String) +- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String,System.Single) + name: IsAnimationActiveOrRunning(string, float) + href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationActiveOrRunning_System_String_System_Single_ + commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(System.String,System.Single) + name.vb: IsAnimationActiveOrRunning(String, Single) + fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(string, float) + fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning(String, Single) + nameWithType: PlayerAnimationManager.IsAnimationActiveOrRunning(string, float) + nameWithType.vb: PlayerAnimationManager.IsAnimationActiveOrRunning(String, Single) - uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning* name: IsAnimationActiveOrRunning href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationActiveOrRunning_ @@ -88943,15 +88952,15 @@ references: isSpec: "True" fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationActiveOrRunning nameWithType: PlayerAnimationManager.IsAnimationActiveOrRunning -- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String) - name: IsAnimationMostlyRunning(string) - href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationMostlyRunning_System_String_ - commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String) - name.vb: IsAnimationMostlyRunning(String) - fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(string) - fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(String) - nameWithType: PlayerAnimationManager.IsAnimationMostlyRunning(string) - nameWithType.vb: PlayerAnimationManager.IsAnimationMostlyRunning(String) +- uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String,System.Single) + name: IsAnimationMostlyRunning(string, float) + href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationMostlyRunning_System_String_System_Single_ + commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(System.String,System.Single) + name.vb: IsAnimationMostlyRunning(String, Single) + fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(string, float) + fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning(String, Single) + nameWithType: PlayerAnimationManager.IsAnimationMostlyRunning(string, float) + nameWithType.vb: PlayerAnimationManager.IsAnimationMostlyRunning(String, Single) - uid: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning* name: IsAnimationMostlyRunning href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsAnimationMostlyRunning_ @@ -88959,12 +88968,15 @@ references: isSpec: "True" fullName: Vintagestory.API.Common.PlayerAnimationManager.IsAnimationMostlyRunning nameWithType: PlayerAnimationManager.IsAnimationMostlyRunning -- uid: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive - name: IsHeldHitActive() - href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsHeldHitActive - commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive - fullName: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive() - nameWithType: PlayerAnimationManager.IsHeldHitActive() +- uid: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(System.Single) + name: IsHeldHitActive(float) + href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsHeldHitActive_System_Single_ + commentId: M:Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(System.Single) + name.vb: IsHeldHitActive(Single) + fullName: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(float) + fullName.vb: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive(Single) + nameWithType: PlayerAnimationManager.IsHeldHitActive(float) + nameWithType.vb: PlayerAnimationManager.IsHeldHitActive(Single) - uid: Vintagestory.API.Common.PlayerAnimationManager.IsHeldHitActive* name: IsHeldHitActive href: api/Vintagestory.API.Common.PlayerAnimationManager.html#Vintagestory_API_Common_PlayerAnimationManager_IsHeldHitActive_ @@ -132866,6 +132878,22 @@ references: isSpec: "True" fullName: Vintagestory.API.Util.StringUtil.FastStartsWith nameWithType: StringUtil.FastStartsWith +- uid: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(System.String) + name: GetNonRandomizedHashCode(string) + href: api/Vintagestory.API.Util.StringUtil.html#Vintagestory_API_Util_StringUtil_GetNonRandomizedHashCode_System_String_ + commentId: M:Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(System.String) + name.vb: GetNonRandomizedHashCode(String) + fullName: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(string) + fullName.vb: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode(String) + nameWithType: StringUtil.GetNonRandomizedHashCode(string) + nameWithType.vb: StringUtil.GetNonRandomizedHashCode(String) +- uid: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode* + name: GetNonRandomizedHashCode + href: api/Vintagestory.API.Util.StringUtil.html#Vintagestory_API_Util_StringUtil_GetNonRandomizedHashCode_ + commentId: Overload:Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode + isSpec: "True" + fullName: Vintagestory.API.Util.StringUtil.GetNonRandomizedHashCode + nameWithType: StringUtil.GetNonRandomizedHashCode - uid: Vintagestory.API.Util.StringUtil.IndexOfOrdinal(System.String,System.String) name: IndexOfOrdinal(string, string) href: api/Vintagestory.API.Util.StringUtil.html#Vintagestory_API_Util_StringUtil_IndexOfOrdinal_System_String_System_String_