I don't know if you have already heard this one yetError

You get stuck in the interface of the recycler when placed on the ground with no foundation.

I can't replicate it with the plugin running on it's own, can you send the output of the 'plugins' command for your server?

 

Can you add something like this?

object OnEntityGroundMissing(BaseEntity entity)
{
    Puts("OnEntityGroundMissing works!");
    return null;
}
BuildingBlock block; // your BuildingBlock
Collider component = block.GetComponentInChildren<Collider>();
if (component)
{
    Bounds bound = component.bounds;
    List<BaseEntity> list = Facepunch.Pool.GetList<BaseEntity>();    Vis.Entities<BaseEntity>(bound.center, bound.extents.magnitude + 1f, list, 2097408, QueryTriggerInteraction.Collide);
    foreach (BaseEntity baseEntity in list)
    {
        if (!baseEntity.IsDestroyed && !baseEntity.isClient && !(baseEntity is BuildingBlock))
        {
            // DO STUFF
        }
    }
    Facepunch.Pool.FreeList<BaseEntity>(ref list);
}​
BuildingBlock block = (BuildingBlock)GameManager.server.gettype("assets/prefabs/building core/foundation/foundation.prefab");
if (block == null) return;           
block.transform.position = player.transform.position;
block.transform.rotation = player.transform.rotation;
block.gameObject.SetActive(true);
block.blockDefinition = PrefabAttribute.server.Find<Construction>(block.prefabID);


Merged post

When the recycler is placed it locks you in in to up and down but you can't look right or left if its not on a foundation.
cmtNrfOkU5McXth.jpg TheFriendlyChap

I can't replicate it with the plugin running on it's own, can you send the output of the 'plugins' command for your server?

 

I use the recycler.craft and then try to place on ground and get stuck, thats the just of it.

cmtNrfOkU5McXth.jpg TheFriendlyChap

can you send the output of the 'plugins' command for your server?

 

I can place all the recyclers I want on the ground or foundations.  So some 3rd party plugin is causing the plugin to behave erratically. Hence I ask for the output of the `plugins` command to see if anything is listed that could create errors.

There isn't a command or output from what I can see, its when you try to get on the recycler it gets me stuck in a limited direction, I'll try to find what might be causing it, but I don't know where i'd start.