]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
You no longer get deleted when cuffed and buckled (#29718)
authorKillerqu00 <47712032+Killerqu00@users.noreply.github.com>
Sat, 6 Jul 2024 04:01:51 +0000 (06:01 +0200)
committerGitHub <noreply@github.com>
Sat, 6 Jul 2024 04:01:51 +0000 (14:01 +1000)
fix

Content.Shared/Buckle/SharedBuckleSystem.Strap.cs

index eb23aa973b4bffe90fe00dd3b1625d87e6fd20ca..bfb0cd9cd6fdfd3d0e3407e63a5f395533bf972a 100644 (file)
@@ -57,7 +57,7 @@ public abstract partial class SharedBuckleSystem
     {
         foreach (var entity in strapComp.BuckledEntities.ToArray())
         {
-            TryUnbuckle(entity, entity, true);
+            Unbuckle(entity, entity);
         }
     }