Jump to content

Issues arising after the official update

Work in Progress 1.3.2

YaCat
YaCat

Posted

After the official update, a problem has occurred where planting boxes will plant seeds indefinitely as long as there are seeds.

Stormo

Posted

I have the same problem — it keeps planting and planting as long as there are clones in the box.

 

YaCat

Posted (edited)

repeat

Edited by YaCat
YaCat

Posted

15 minutes ago, Stormo said:

I have the same problem — it keeps planting and planting as long as there are clones in the box.

 

fix line: 4788

from:
private bool IsSocketEmpty(Vector3 position)
{
    var hits = Pool.Get<List<GrowableEntity>>();
    Vis.Entities(position, 0.1f, hits);
    bool empty = hits.Count == 0;
    Pool.FreeUnmanaged(ref hits);
    return empty;
}

to:
private bool IsSocketEmpty(Vector3 position)
{
    float distance = 0.1f;
    List<GrowableEntity> list = new List<GrowableEntity>();
    BaseEntity.Query.Server.GetInSphere(position, 0.1f, list);
    return list.Count <= 0;
}

ProjektEU

Posted

yes I have the same problem I hope it gets resolved as soon as possible

Martian

Posted

Changed Status from Pending to Work in Progress

trexess

Posted

У меня то же самое (

2.3m

Downloads

Total number of downloads.

10.5k

Customers

Total customers served.

152.2k

Files Sold

Total number of files sold.

3.2m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.