What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

GardenManager.Plant not selecting soil

iyake

Member
Joined
Oct 19, 2014
Messages
143
Reaction score
5
In rebornconsole:

Code:
BagSlot seeds = InventoryManager.FilledSlots.Where(b => b.EnglishName.Contains("Krakka Root Seeds")).FirstOrDefault();
BagSlot soil = InventoryManager.FilledSlots.Where(b => b.EnglishName.Contains("Grade 3 Shroud Topsoil")).FirstOrDefault();

Log(seeds);
Log(soil);

GardenManager.Plant(seeds, soil);


output:
Code:
Krakka Root Seeds 8182
Grade 3 Shroud Topsoil 7763

The seeds are getting selected correctly, but the soil isn't
 
It's a known issue, calling it twice should work for now. The function really needs to be replaced with a async version.
 
Calling it twice isn't working for me. It doesn't select the soil the second time around either.
 
Back
Top