(Feat) Add Build

This commit is contained in:
2026-07-22 12:56:13 +02:00
parent 3657b870d8
commit 0052b0d98e
244 changed files with 35752 additions and 3112 deletions
@@ -81,10 +81,12 @@ namespace Ashwild.Crafting
#region Event Handlers
/// <summary>
/// Marks an acquired item as discovered. Guarded to the owning instance so a remote puppet
/// that briefly subscribed before being gated off can never drive discovery on the wrong copy.
/// Marks an acquired item as discovered. Transfers count too — pulling an item a co-op partner
/// left in a chest is a genuine first acquisition and must unlock its recipes, even though the
/// HUD stays silent about it. Guarded to the owning instance so a remote puppet that briefly
/// subscribed before being gated off can never drive discovery on the wrong copy.
/// </summary>
private void HandleItemAdded(ItemData item, int quantity)
private void HandleItemAdded(ItemData item, int quantity, bool isTransfer)
{
if (Instance != this) return;
Discover(item);