(6d28a11e5) Ignore platforms in pathfinder raycasts. Should fix #1450.

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:30:58 +03:00
parent 7614642d93
commit ddd61a9243
10 changed files with 262 additions and 185 deletions
@@ -677,6 +677,25 @@ namespace Barotrauma.Items.Components
}
}
if (targetItem.Prefab.DeconstructItems.Any())
{
inputContainer.Inventory.RemoveItem(targetItem);
Entity.Spawner.AddToRemoveQueue(targetItem);
MoveInputQueue();
PutItemsToLinkedContainer();
}
else
{
if (outputContainer.Inventory.Items.All(i => i != null))
{
targetItem.Drop(dropper: null);
}
else
{
outputContainer.Inventory.TryPutItem(targetItem, user: null, createNetworkEvent: true);
}
}
if (targetItem.Prefab.DeconstructItems.Any())
{
inputContainer.Inventory.RemoveItem(targetItem);