Error with March patch and Info("Crafting Controller", "Whispers88", "3.3.3")

Error while compiling CraftingController: 'CraftingController' does not contain a definition for 'owner' and no accessible extension method 'owner' accepting a first argument of type 'CraftingController' could be found (are you missing a using directive or an assembly reference?) | Line: 438, Pos: 47

Me as well.

Error while compiling CraftingController: 'CraftingController' does not contain a definition for 'owner' and no accessible extension method 'owner' accepting a first argument of type 'CraftingController' could be found (are you missing a using directive or an assembly reference?) | Line: 438, Pos: 47

replace this:

itemtogive.OnVirginSpawn(this.owner);
itemtogive.SetItemOwnership(this.owner, ItemOwnershipPhrases.CraftedPhrase);​

with this:

itemtogive.OnVirginSpawn(player);
itemtogive.SetItemOwnership(player, ItemOwnershipPhrases.CraftedPhrase);
JO72yySHxmVfdYo.jpg abcde

replace this:

itemtogive.OnVirginSpawn(this.owner);
itemtogive.SetItemOwnership(this.owner, ItemOwnershipPhrases.CraftedPhrase);​

with this:

itemtogive.OnVirginSpawn(player);
itemtogive.SetItemOwnership(player, ItemOwnershipPhrases.CraftedPhrase);

Thank you, This worked!