not sure if it was easter update but now all i get trying to copy or paste is "cant find player",i am running plugin on carbon, i tried everything changing ownership of structure, revoking then re giving permissions i saw deleting server might fix it but then i would risk losing the built structure if iserting the last .sav file didnt work as sometimes happens
Cant find player trying to copy or paste, seems to be after easter update
I'm getting the same issue. Built a small 1x2 to test an idea. When I want to copy it, I got the message in chat

any idea @misticos?
If it's only happening on Carbon I'd recommend reaching out to them regarding oxide compatibility.
misticos
If it's only happening on Carbon I'd recommend reaching out to them regarding oxide compatibility.
Had similar issue with mine plugin. The problem is that Carbon doesn't really work with Covalence.
So basically when you try to find a single player with covalence it returns the IPlayer, but sometimes the IPlayer is null
I've found a workaround tho
List<IPlayer> foundPlayers = covalence.Players.FindPlayers(playerIDorName).ToList();
IPlayer target = null;
if(foundPlayers.Count > 0)
{
target = foundPlayers[0];
} misticos
If it's only happening on Carbon I'd recommend reaching out to them regarding oxide compatibility.
Possible fix:
//Possible fix:
//Remove line 260
var player = players.FindPlayerById(userId.ToString())?.Object as BasePlayer;
//and replace it with:
var plList = players.FindPlayers(userId.ToString());
var player = plList.FirstOrDefault().Object as BasePlayer;
//Again remove line 276
var player = players.FindPlayerById(userId.ToString())?.Object as BasePlayer;
//and replace it with the same thing
var plList = players.FindPlayers(userId.ToString());
var player = plList.FirstOrDefault().Object as BasePlayer; been fixed with this update of carbon