#help-archived

1 messages ยท Page 142 of 1

crisp widget
#

Assuming you replaced the jar file?

simple aspen
#

Well locally as in a dedicated server locally

#

Well yes I built the latest jar using java -jar BuildTools.jar --rev 1.16.1

#

It's there

#

What startup script?

#

Wasn't really aware this existed lol

brave vector
#

java -Xmx10G -Xms10G -jar server.jar nogui

simple aspen
#

well I just start it through the panel...

#

Is there a path to this script?

#

oh yeah true there might be some setting

#

lemme check

brave vector
#

I use tmux

simple aspen
#

Ah so it's "latest"

#

lol no

#

just gonna use my regular ol' konsole

#

best emulator there is

brave vector
#

I use ubuntu-server so

#

It's 100% Cli

simple aspen
#

yeah so is like every server distro lol

dreamy dawn
#

I can confirm that Could not connect to a default or fallback server, please try again later: io.netty.channel.AbstractChannel$AnnotatedConnectException is on 1508 and latest spigot

brave vector
#

enable bungeecord in spigot.yml?

simple aspen
#

Anyways, I think the version in the panel is prob the culprit. Thanks

#

just gotta wait for plugins to update ig

brave vector
#

yeah it will take a lot of time of waiting the plugin to be updated

dreamy dawn
#

bungeecord already enabled xD it was working before updating

brave vector
#

oof so you keep all old settings?

dreamy dawn
#

yes

#

md5's announcement didn't say to change anything afaik

brave vector
#

yeah i see that too

#

but i haven't try yet

dreamy dawn
#

I downgraded a spigot server to 1.15.2 and now I'm getting this error: >.... [23:23:58 ERROR]: Could not de-serialize chunk data for task: Chunk task: class:com.destroystokyo.paper.io.chunk.ChunkLoadTask, for world 'world', (-10,-5), hashcode:1780167794, priority: -1

brave vector
#

oh you use PaperSpigot?

dreamy dawn
#

the 1.15.2 servers do

brave vector
#

well

#

you can't downgrade

dreamy dawn
#

xD I see that now

brave vector
frigid ember
#
[23:30:14] [Server thread/ERROR]: Error occurred while enabling nationsatwar v1.1 (Is it up to date?)
java.lang.IllegalArgumentException: The validated object is null
        at org.apache.commons.lang.Validate.notNull(Validate.java:192) ~[server.jar:git-Spigot-a99063f-c9d7c16]
        at org.apache.commons.lang.Validate.notNull(Validate.java:178) ~[server.jar:git-Spigot-a99063f-c9d7c16]
        at org.bukkit.craftbukkit.v1_15_R1.entity.CraftVillager.setVillagerType(CraftVillager.java:57) ~[server.jar:git-Spigot-a99063f-c9d7c16]
        at net.mcnations.nationsatwar.general.packets.npcs.Architect.spawnEntity(Architect.java:108) ~[?:?]
        at net.mcnations.nationsatwar.nations.Nation.init(Nation.java:141) ~[?:?]
        at net.mcnations.nationsatwar.nations.Nation.<init>(Nation.java:122) ~[?:?]

I'm getting this error when I am initializing the following code:

architectVillager.setVillagerType(nation.getBiomeType());

Its saying the value returned by getBiomeType() is null, yet I know that it is NOT null

#

Any idea what is going on here?

#

before, in the constructor, I just had this.biomeType = biomeType;, where biomeType is a Type (for specifying the type of villager)

#

I changed that to biomeType = Type.SAVANNA directly in the code & now it works...

#

Can you not pass enum values in as a variable?

#

That would seem weird to me

brave vector
#

It's your own enum class or it's BiomeType bukkit class?

frigid ember
#

BiomeType bukkit class

#

not my own impl

brave vector
#

What is nation?

#

is it VIllager.Type?

frigid ember
#

Yeah

#

nation is just the object

#

the wrapper object that holds the biome type

#

Ill show you the constructor

brave vector
#

does it return Villager.Type?

frigid ember
#

public Nation( Type biomeType) {//stuff}

brave vector
#

and you have this.biomeType = biomeType;

frigid ember
#

yup

#

Nation gaul = new Nation(Type.SWAMP);

#

^Creating the Nation object

brave vector
#

Can i see all your class?

frigid ember
#

uh

#

yeah

#

its huge

brave vector
#

?paste

worldly heathBOT
frigid ember
brave vector
#

It's not huge as i think

frigid ember
#

yea i hid most of the methods

brave vector
#

Do you use Villager.Type.valueOf()?

frigid ember
#

shouldn't have to

whole night
#

When a new player joins my server he is invis

brave vector
#

so what is "Type"?

frigid ember
#

Its a type

#

This is what it looks like when I instantiate it

brave vector
#

it's return Type (Object)?

frigid ember
#

Nation gaul = new Nation("gaul", Color.GREEN, 10, ChatColor.DARK_GREEN, Material.GREEN_WOOL, org.bukkit.ChatColor.DARK_GREEN, Statics.NORTH, Type.SWAMP);

#

type being the last param

#

Type.SWAMP

brave vector
#

it's Villager.Type?

#

or it's something else

frigid ember
#

Its being passed in as a org.bukkit.entity.Villager.Type

brave vector
#

yeah ok

frigid ember
#

weird right

brave vector
#

Did you set after create a new instance?

frigid ember
#

?

#

In the pastepin you can see I set it to this.biomeType

#

then I just have a getter

brave vector
#

yes i know

#

you have created a new Nation Object before set the villager type right?

frigid ember
#

that all happens in the constructor

tiny bison
#

so how do u get build tools to work on a server host

brave vector
#

Download from jenkins then run command

frigid ember
#

^

tiny bison
#

my server is hosted on a 3rd party thing tho

frigid ember
#

@brave vector I'm confused by your question

brave vector
#

so you need to wait ^

#

i meant

tiny bison
#

so build tools only works on local machines

brave vector
#

you answer me that when you create a new object the village biome will set?

frigid ember
#

yes

#

That happens in the constructor

#

Its passed in as a parameter

#

@tiny bison No, I do it on my remote linux box

brave vector
#

i don't see it lol

frigid ember
#

What do you mean

#

Its at the end of the contructor

#

Type.SWAMP

brave vector
#

i meant the method to set VillagerType

#

do you hide it?

#
Nation gaul = new Nation("gaul", Color.GREEN, 10, ChatColor.DARK_GREEN, Material.GREEN_WOOL, org.bukkit.ChatColor.DARK_GREEN, Statics.NORTH, Type.SWAMP);

// Then
villager.setVillagerType(gaul.getBiomeType());```
whole night
#

When a new player joins my server he is invis

brave vector
#

invisible?

whole night
#

yes only new players

brave vector
#

/vanish

whole night
#

what>

#

no they are invisible

brave vector
#

everytime new player join?

whole night
#

yes

brave vector
#

well i don't know, have you checked all the plugins?

whole night
#

I dont think its the plugins

frigid ember
#

@brave vector no, I am setting it via this.biomeType = biomeType;

whole night
#

I will send you list

frigid ember
#

it doesn't need a setter

#

because its being done in the constructor

brave vector
#

damn i see

#

i thought that is the set throw the exception

frigid ember
#

Are you talking about giving the actual villager entity its type?

#

md_5, I think there may be a bug my good sir

brave vector
#

I don't see the Validate.notNull() lol

#

Do you put it into ur code?

frigid ember
#

No

#

Thats part of bukkit

brave vector
#

I don't see it lol

frigid ember
#

well, its a dependency bukkit uses

#

Apache.commons

brave vector
#

yes ik

molten whale
brave vector
molten whale
#

Well, I have it only on my backend servers as the plugin suggets

brave vector
#

But it's bungeecord beta version

#

Wait sorry this is player list

molten whale
#

Thats for.. the tab?

#

yeah xD

#

I already have BungeeTabList and it works perfectly.

#

First time I use it tho

brave vector
#

Well i think there is only ServerListPlus

#

I think it work properly for all version of Bungeecord

molten whale
#

Dont kick me for using Waterfall, but it has this option:
game_version: ''
and I dont seem to find any documentation at all of what it does...

brave vector
#

No one kick you lol

#

Waterfall is a fork of Bungeecord

molten whale
#

sometimes the community gets salty for using a fork of spigor and asking help here :3

#

I mean... they are right

#

xD

brave vector
#

Well i use my own Bungeecord

#

fork Travertine

storm vessel
brave vector
#

When a new player joins my server he is invis
Send plugin lisst?

whole night
#

Ok

storm vessel
#

A ton of error messages beginning with something like Couldn't load chunk [-24, -11]

#

ok

brave vector
#

You upgrade from 1.15.2?

storm vessel
#

Yes

#

Could it be an issue with worlds that I downloaded that were not generated using 1.15.2?

brave vector
#

Well there won't be any problem if you upgrade from 1.15.2

storm vessel
#

Wish that could help me but...

brave vector
#

Did you upgrade then downgrade then upgrade?

storm vessel
#

No, I upgraded directly from 1.15.2

brave vector
#

for me everything it's working fine

storm vessel
#

Did you use Multiverse/extra worlds?

brave vector
#

No i didn't

storm vessel
#

Thats why

brave vector
#

I just heared about the WorldData

gray crest
#

so now that spigot 1.16.1 is out, do I also need to wait for all the individual plugins to update?

brave vector
#

may be the World constructor has been changed a bit

gray crest
#

or will some of them work immediately with 1.16.1

brave vector
#

1.16 isn't different with 1.15.2 a lot

frigid ember
#

@brave vector Its definitely a bug in either bukkit or spigot

gray crest
#

so for instance, an existing EssentialsX jar should work

#

I have a pretty small plugin list

whole night
brave vector
#

@brave vector Its definitely a bug in either bukkit or spigot
So now wait for 1.16.2 lol

#

i see SuperVanish

#

may be you config wrong

frigid ember
#

I'm doing this on 15.2 still

whole night
#

Dont think its that

#

But I will see

brave vector
#

Everything can be possible

#

I'm doing this on 15.2 still
Wait lol

frigid ember
#

@whole night nah talking about my issue

#

Yeah I'm on 15.2

#

Does that matter?

#

I thought older versions were stable?

brave vector
#

1.15.2 is no longer support

frigid ember
#

oh

#

Well

#

Shit

brave vector
#

If there is any bugs, they won't be fixed

#

But i think it's the java coding problem

#

not bukkit problem

gray crest
#

oh I'm making a new server

brave vector
#

yeah alright

gray crest
#

I just wanted to see if I could use the plugins in the spigot resources immediately or if they need to be updated

frigid ember
#

Nah mango its not my code

#

I pass enum values in via the constructor commonly

#

It works for all other values in that same constructor

#

Just not this one

brave vector
#

well i'd use Villager.Type

opal bay
#

It depends on the plugin @gray crest but from what I've seen a lot of plugins don't support 1.16 but others work fine

gray crest
#

ok guess I'll have to test

frigid ember
#

Thats what it is Mango

#

org.bukkit.entity.Villager.Type is the fully qualified package name

brave vector
#

yeah but i only import org.bukkit.entity.Villager

#

but it's ok with your

lofty meadow
#

Hello!

#

Can we use other than Java8 ?

brave vector
#

like java11?

lofty meadow
#

Yes

#

or others

brave vector
#

yes you can but your spigot server must run at java 11

#

and some plugin like ProtocolLib isn't compatiable with java 11

storm vessel
#

Ok so I tried to update and it didnt work due to errors. Now I went back to 1.15.2 and the server wont let anyone connect. It starts up but no one can join

brave vector
#

?paste

worldly heathBOT
brave vector
#

log please

lofty meadow
#

@brave vector Excuse me, I just see the Spigot has just one, is it support all java version ? or how many ?

storm vessel
#

ignore the first part, that was from a previous start

#

Please help, my server has never been down this long and there a lots of players getting anxious

frigid ember
#

Why is build tools giving me 1.15.2?

#

I just ran it & gave me 15.2

#

...

#

do --rev 1.16.1

arctic vector
#
java -jar BuildTools.jar --rev 1.16.1```
gray crest
#

did you do --rev 1.16.1 ?

frigid ember
#

what lesxmore said

brave vector
#

@brave vector Excuse me, I just see the Spigot has just one, is it support all java version ? or how many ?
Yes is support all version of java

gray crest
#

I think it supports everything 8+

frigid ember
#

I'm stupid

brave vector
#

well

gray crest
#

since I mean java is inherently backwards compatible

brave vector
#

you got a log error lol

frigid ember
#

I didn't do --rev 1.16.1

#

lol

#

oops

brave vector
#

if you dont put any flag

#

the version is the latest

frigid ember
#

is this the place to ask about help for issues relating to coding spigot plugins too?

arctic vector
brave vector
#

everything related to spigot/bungeecord

frigid ember
#

hmm ok

#

Yea guys... I downloaded the latest version of buildtools, ran the "latest" command... still no dice

#

And thats cuz latest isnt actually the latest

#

ok

brave vector
#

oh you are right

willow eagle
#

they havent updated the checker yet so just type 1.16.1

zealous lynx
#

did Player#updateInventory() get deprecated?
it isn't for me but it is for my friend, we just synced up running buildtools at the same time and he still has it as deprecated, but i dont

storm vessel
#

Please help, I tried to update to 1.16.1, it didnt work, so I went back to 1.15.2

#

Now my server starts (Even discord SRV works) but no one can connect

zealous lynx
#

(i checked the docs and it doesn't say it's deprecated)

frigid ember
#

Then ur gucci

zealous lynx
#

i am but my friend can't compile his plugin

fleet crane
#

deprecation wouldnt stop compilation

brave vector
#

you can put <showDeprecation>false</showDeprecation>

#

at the maven compiler plugin

fleet crane
#

I think the situation was it was deprecated in bukkit but not spigot-api

#

in any case we dont distribute bukkit even via maven as of 1.16.1

zealous lynx
#

true, there was another weird thing it was doing for him too. his ide kept wanting him to cast Switch to FaceAttachable in order to use getAttachedFace() but it doesn't yell at me

#

and that does show as an error for him

stray schooner
storm vessel
#

please help, I keep getting this error when starting up

#

I would paste the entire log but it's too big for pastebin

fleet crane
#

did you downgrade your server from 1.16.1 to 1.15.2

#

usually thats what causes errors like that

storm vessel
#

Yes, after 1.16.1 wasn't letting people connect

#

How can I fix it?

gray crest
#

do you have a world backup?

fleet crane
#

you need to restore from a backup or update to 1.16.1

gray crest
#

restoring the world files should allow the 1.15 jar to startup

#

otherwise you're stuck with 1.16 most likely

storm vessel
#

I'm fine using 1.16, but that isn't working right either. I'll start it up and paste the error

#

the server starts up but no one can connect

#

This is using 1.16.1, to clarify

fleet crane
#

well youve got a lot of plugins in there saying they dont support 1.16

storm vessel
#

What should I do?

fleet crane
#

remove all the plugins with errors

pastel condor
#

decompile them and update the plugins with errors ๐Ÿ™‚

#

jk don't do that

fleet crane
#

also you derped up your file permissions somewhere (see all the permission denied exceptions)

#

might wanna do a chown -R on your server folder

storm vessel
#

I'm sorry, I'm not familiar with that

#

How should I do that?

frigid ember
fleet crane
#

no

frigid ember
#

๐Ÿ˜•

idle fable
#

is it just me or is there no api-version for 1.16?

idle fable
#

-No, the api-version for the plugin.yml (CraftMagicNumbers.java)- (nvm, my fault)

storm vessel
#

@fleet crane Ok so I started the server with 0 plugins and it still wont allow connections

#

What do I do now? I have lots of players who aren't able to play bc the server is down

fervent ridge
#

can i upload a log and have someone looks at whats wrong?

frigid ember
#

are memes allowed in #general ?

#

this has nothing to do with spigot

#

more with the discord server

foggy isle
#

hey I'm sorry I'm probably the 100th person to ask this but is anyone else not able to get any plugins working on 1.16?

storm vessel
#

Please, can someone help me? I don't want to be a bother but I am losing players every minute that the server is down

fervent ridge
#

i cant even connect after preparing spawn

#

it just freezes

#

and a few mins later stops bc of a bunch of errors

storm vessel
#

?paste

worldly heathBOT
storm vessel
#

paste your logs there, click save, paste url here

fervent ridge
#

let me try vanilla

storm vessel
#

@fleet crane Ok so I started the server with 0 plugins and it still wont allow connections
https://paste.md-5.net/jetaferaca.md
What do I do now? I have lots of players who aren't able to play bc the server is down

fervent ridge
#

same

#

i dont have plugins too

storm vessel
#

My server used to run fine with 72 plugins

#

until I tried to update

restive lava
#

Servers runs fine

fleet crane
#

looks fine to me

#

what happens when you try to connect

fervent ridge
#

nothing happens

storm vessel
#

it just says "Connecting to server..."

fervent ridge
#

right after preparing spawn the whole server freezes

#

even if u type commands it just doesnt respond

fleet crane
#

you will need to open a bug report with your world file

fervent ridge
#

i tried different world files

storm vessel
#

Me or asdf?

fleet crane
#

asd

storm vessel
#

What should I try next?

fervent ridge
#

:O vanilla works

little void
#

Hej, couldn't read through all the other messages and can image you're flooded with these errors atm. I am stuck at "Preparing spawn area: 0%". Something I can try?

storm vessel
#

Idk if anyone here does this but if there are any devs who are experienced with this type of thing I will pay you to fix my server

fervent ridge
#

md5 is very experienced

storm vessel
#

yeah, I would think so

gray crest
#

ok I'll wait and see if we get a release tomorrow

#

the essX release from 8 hours ago appears to partially work

#

except for EssentialProtect which won't load at all

brave vector
#

EssX protect and antibuild are succ

storm vessel
#

I will pay $100 to anyone who can help me fix my server. It worked fine earlier today and only broke after I tried to update to 1.16

opal bay
#

keep ur cash

#

what errors are in log?

storm vessel
#

Either way, the server starts up (discordSRV shows that the server is up aswell) but it won't allow connections

opal bay
#

what happens when players try to connect?

#

like in the console, does it show anything?

storm vessel
#

No, nothing is displayed in console

opal bay
#

from what I can tell that could be a firewall issue?

willow eagle
#

sounds like a stupid question but have you got the right port open and or connecting to the right one?

storm vessel
#

but strangely enough, if a player types a message in the discord-minecraft channel, it appears in console

#

Yes, it worked fine for months and stopped working as soon as i updated

pastel condor
willow eagle
#

has the port reverted?

storm vessel
#

I'm not familiar with that?

#

lemme google it, ill get back to you

opal bay
#

oof, perhaps you could try downgrading back to 1.15.2 and see if you can still connect

tall crystal
#

uh what changed to bungeecord that it now errors that Team already exists?

fleet crane
#

update your bungeecord

pastel condor
#

me?

opal bay
#

lmao nice snipe

#

not you

pastel condor
#

oh

willow eagle
#

what i mean is that if your using a custom port eg 25595 isted of defult when u updated it might have just decided to revert idk

opal bay
#

I've never seen errors like that ):

pastel condor
#

who

opal bay
#

you

#

but it looks like chunks are just not generating

pastel condor
#

it's like a bad chunk or something? idk

storm vessel
#

@opal bay I tried that. md_5 said that wouldn't work. As far as I can know 1.16 handles world files differently so now that I've tried running the server with 1.16 they are formatted for that version

opal bay
#

oh okay

#

but still, upgrading versions shouldn't cause players to not even be able to connect to an IP

storm vessel
#

And unfortunately (I know, I should not have done this) I dont have any recent world backups

pastel condor
#

I swear why does it have to stop [22:41:45] [Thread-2/INFO]: Stopping server

#

so annoying

#

is this a spigot bug?

#

or minecraft? or something else?

brave vector
#

wot?

willow eagle
#

@storm vessel you do whant your server on 25565 right?

brave vector
#

it's normal lol

languid jolt
#

I swear why does it have to stop [22:41:45] [Thread-2/INFO]: Stopping server
@pastel condor

How is that annoying?

storm vessel
#

@willow eagle yes

pastel condor
#

@languid jolt it prevents my server from starting up

brave vector
#

Plugin error?

pastel condor
#

doesn't look like one

#

yes

brave vector
#

This is not the bug, it's the world problem

pastel condor
#

bad chunk or something

brave vector
#

and everytime you exce /stop command

#

It will send you Stoping Server

pastel condor
#

but I did --forceUpgrade

#

idk

#

I mean I followed the steps?

languid jolt
#

Are your plugins up-to-date with your version of spigot?

pastel condor
#

Nope

#

first time running 1.16

brave vector
#

only the multi world get error

languid jolt
#

Maybe that's the issue ๐Ÿคทโ€โ™‚๏ธ

pastel condor
#

so I wanted to see what was out of date

brave vector
#

the default world doesn't get any error

pastel condor
#

well you know you update the server then the plugins

brave vector
#

Yeah this is the problem of Multiverse Core

pastel condor
#

but spigot craft uses multiverse?

languid jolt
#

Think multiverse is broken with 1.16

willow eagle
#

you have got a static ip right im just grasping at staws lmao @storm vessel

brave vector
#

idk but it seems -forceUpdates only work with default world

tall crystal
#

I wish I could update to the latest build but shockbytes not up to date and otherwise it just ends up saying it can't bind to the host.....

storm vessel
#

Oh btw, I just installed fail2ban and changed from password SSH to auth key SSH, could that have anything to do with my issues?

languid jolt
#

@tall crystal Make a ticket on shockbyte

pastel condor
#

what should I do?

storm vessel
#

@willow eagle Yes, I have a dedicated server through soyoustart (OVH) so def a static ip

willow eagle
#

can you disable it and try it?

languid jolt
#

Revert back and wait for better builds

brave vector
#

i will wait for md_5 answer

pastel condor
#

anything besides that?

#

the reverting

brave vector
#

keep 1.15.2

pastel condor
#

but I promised people that I would update

languid jolt
#

Try removing multiverse for a sec and see if that works

brave vector
#

you can use ViaVersion

tall crystal
#

The last ticket I sent with them just ended up getting thrown out by their bot...

pastel condor
#

oh okay?

#

lol

brave vector
#

btw there isn't have a lot of plugin support 1.16

languid jolt
#

If you remove Multiverse and it works, then you need to wait til multiverse updates their stuff

#

Most plugins should work in 1.16, granted very sketchy and buggy I assume

brave vector
#

well i can't find spigot-api patch notes

#

nah i found it

pastel condor
#

one little problem, the java task is still running

storm vessel
#

@willow eagle wait you mean disable the static ip?

brave vector
#

kill it

pastel condor
#

so if I kill it the worlds will still be locked

#

and then I can't ever start the server

brave vector
#

reboot?

languid jolt
#

^

pastel condor
#

same though?

brave vector
#

no

#

it will kill every process

pastel condor
#

because the worlds need to be unlocked

willow eagle
#

no i amean turn of fail2ban @storm vessel see if it fixes it

languid jolt
#

If you kill the Java task then the worlds should be ok

#

Reboot if needed

pastel condor
#

last time it wasn't, but I'll try again

brave vector
#

tf locked world

languid jolt
#

Think he means like the "another application is using that file" thing

brave vector
#

so kill all server java progress

#

lol

languid jolt
#

Ya basically

brave vector
#

or just reboot

pastel condor
#

I just rebooted the entire server

#

time to see...

#

well it's booting up now

#

I have to give it like 30 seconds

brave vector
#

i will wait for 1.16.2

#

now i will do my bot project

#

i don't know why everyone like the unstable things

languid jolt
#

I usually wait til 1-2 weeks after spigot release to update (that's if there's a bunch of releases)

brave vector
#

1.xx.1 is an unstable version, everytime

frigid ember
#

Help

red zenith
#

Cause they gotta have it Nao!

languid jolt
#

Well they had to release 1.16.1 1-2 days after so that means 1.16 is more unstable than my love life

brave vector
#

lol if you use 1.16.1 deluxehub may execute some shit error

languid jolt
#

I'm going to bed, playing pokemon go- I mean mc tmr

brave vector
#

wait sorry you are using 1.12.2

#

yeah 1.16 is unstable, and 1.16.1 does

#

1.16.2 is the latest stable version if there isn't any bugs

#

if there is, we will have 1.16.3 and 1.16.4 lol

pastel condor
#

the server is now starting up

brave vector
#

please send log into

#

?paste

worldly heathBOT
brave vector
#

pastebin is hard to read

pastel condor
#

I switched to the multiverse that spigotcraft uses, and it seems to work fine

brave vector
#

yeah that great

pastel condor
#

lmao like 15 of my plugins don't work

#

thanks for all your help

brave vector
#

yeah i suggest to use 1.15.2 when every plugin are updated

pastel condor
#

I'm just testing atm

#

lmao essentials is going crazy with tab compleate

#

I'll just use spigot craft's essentials

brave vector
#

i will code my own essentials

pastel condor
#

๐Ÿ˜‘

brave vector
serene sail
#

damm essentials be going crazy

bleak leaf
#

Nevermind i am stupid. Pointed to the wrong server

candid prawn
#

what's the best place to get the most up to date essentials for spigot 1.16.1?

olive latch
candid prawn
#

sweet, thank you

abstract grove
#

When I'm modifying a player's experience with Spigot (Player#setTotalExperience()) -- am I required to use Player#sendExperienceChange() as well to modify their actual EXP bar?

#

And how would I get the percentage they need to get to the next level?

#

The only method I see in relation to this would be int getExpToLevel();, but I don't even know if that only displays their progress or total required for the next level, and I still don't know how to get the vice/versa for it

frigid ember
#

how can i get red wool and return it as a material?

molten river
#

The world-container option in bukkit.yml doesn't seem to be working with 1.16.1
It created a new world for me on the root directory

golden valley
#

got bungee working and servers up for 1.16.1, how do i get people from the hub (advanced portals is no workie) what plugin are youguys using ?

serene sail
pastel condor
#

advanced portals isn't working for me too ๐Ÿ˜ฆ

#

it is @serene sail

candid prawn
#

I assume the Citizens 2 and Lib's Disguise plugins need to wait for their respective builders to update for 1.16.1?

pastel condor
#

yeah citizens hasn't been updated yet ๐Ÿ˜ฆ

golden valley
#

is there anyway for me to /server people?

olive latch
candid prawn
#

any clue on how long we might need to wait for an update? Simply curious, I only recently started running modded MC again

#

@pastel condor

broken patio
#

Is there any way to re-open a spigot issue or is the only way to make a new one and refer to the old one?

frigid ember
#

how could i get a wool color and return it as a Material

broken patio
#

what version?

pastel condor
#

@candid prawn I think last update (1.15) it took a week to two weeks

#

but the jar from 1.14.4 kinda worked anyways

wary spoke
#

Did you change the way you send fireworks and action bars at 1.16? I want them to send and error appears even though I use reflections

pastel condor
#

so it wasn't really an issue

frigid ember
#

1.8

broken patio
#

@frigid ember I would assume its color number is under meta I've never used the 1.8 api

candid prawn
#

@pastel condor Nice, that isn't bad at all. Crossing fingers for that one and the Lib's Disguise mods. Been playing with my niece and wanna introduce her to the fun mods ๐Ÿ˜„

pastel condor
#

๐Ÿ™‚

candid prawn
#

@pastel condor do you by chance know of any other additional 'disguise' mods, where you make your character into mobs, etc?

pastel condor
#

sorry, I am not sure

candid prawn
#

all good, just asking :)_

pastel condor
#

though I think plugins like that would take a while to update because they use nms

candid prawn
#

the lib disguise mod uses the protocol jar

#

worked fine with 1.15.2

#

pretty darn recent, so here's hoping

#

wanna surprise my niece with weird animal behaviors and tricks lol

pastel condor
#

lol

candid prawn
#

and populate our hotels with npcs

pastel condor
#

oh crap

#

I can't seem to use multiverse

candid prawn
#

so far who can complain though, spigot, essentials, vault andf worldedit all already have recent updates for 1.16.1. Talk about fast updates

pastel condor
#

yeah

#

when I install it to get my other non main level worlds (aka worlds controlled by multiverse) onto my main server it just crashes my server

candid prawn
#

what is the multiverse plugin?

pastel condor
#

it allows for many worlds

#

It is mentioned in the update thread

candid prawn
#

multiple overworld and such under a single server setup?

pastel condor
#

yes

#

In particular multi-world support was rewritten several times relatively late in the snapshot cycle, so extra caution is recommended if your server has more than the three default worlds (world, world_nether, world_the_end). Although this now means that the Vanilla server (in theory) has (experimental) multi-world support, we have retained the existing Spigot structure and approach for various reasons. Accordingly, you should continue to use your existing plugins and folders for multi-world management and not the Vanilla system.

#

it's a really annoying bug

#

I'll just ask in #general, because there are a bunch of people there

candid prawn
#

I tend to keep my mods to minimum. Right now it's 5 and only waiting on the 2 now.

#

I'm off, later ๐Ÿ™‚

pastel condor
#

plugins you mean?

#

okay cya

candid prawn
#

ya, plugins

#

the ease of spigot/bukkit kinda hard to beat

pastel condor
#

yeah

sudden juniper
#
[09:16:22] [Server thread/INFO]: maxtheinfiniti[/92.105:50883] logged in with entity id 1137 at ([world]410.5, 73.0, 1682.5)
[09:16:22] [Server thread/INFO]: maxtheinfiniti lost connection: Disconnected
[09:16:34] [User Authenticator #8/INFO]: UUID of player maxtheinfiniti is caf5d16c-64eb-32e2-81f2-25a370285232
[09:16:34] [Server thread/INFO]: maxtheinfiniti[/92.1150:51986] logged in with entity id 1138 at ([world]410.5, 73.0, 1682.5)
[09:16:34] [Server thread/INFO]: maxtheinfiniti lost connection: Disconnected```
zenith palm
#

@sudden juniper you'll need to provide a full log and list of plugins, that explains nothing to us sadly

sudden juniper
frigid ember
candid prawn
#

@zenith palm Sorry, noob here, if I notice a seeming issue with the Essentials update, where do I report it for you guys?

subtle sundial
#

that's a lot of mods that probably aren't updated for 1.16 lol

zenith palm
#

@zenith palm Sorry, noob here, if I notice a seeming issue with the Essentials update, where do I report it for you guys?
@candid prawn I'd recommend using something like EssentialsX

frigid ember
#

After you doPacketPlayOutEntityDestroy how to bring back those entity

#

anyone know?

candid prawn
#

@zenith palm Sorry, meant I am using the very latest EssentialsX plugin and it seems to be working just fine. I just noticed one bug and wondering where to report it, unless I'm confusing spigot devs with essentialsx devs and this is the wrongf place for that question

zenith palm
candid prawn
#

@zenith palm awesome, thanks!

zenith palm
#

welcome

frigid ember
#

After you doPacketPlayOutEntityDestroy how to bring back those entity
@frigid ember

ashen nebula
#
        at net.md_5.bungee.chat.BaseComponentSerializer.deserialize(BaseComponentSerializer.java:70) ~[spigot.jar:git-Spigot-758abbe-2b00831]```
getting an NPE while trying to serialize a json string with some new hex codes, has anyone else encountered this?
undone narwhal
#

Can you show us your code?

ashen nebula
#
        try {
            BaseComponent[] parsed = ComponentSerializer.parse(message);
            String parsedString = StringUtils.join(Arrays.stream(parsed)
                    .map(baseComponent -> baseComponent.toPlainText())
                    .toArray(String[]::new));

            if (parsedString.equals(message))
                player.sendMessage(prefixed ? UtilUI.colorize(prefix) + message : message);
            else {
                if (prefixed)
                    parsed = new ComponentBuilder(UtilUI.colorize(prefix)).append(parsed).create();

                if (actionBar && player instanceof Player)
                    ((Player) player).spigot().sendMessage(ChatMessageType.ACTION_BAR, parsed);
                else
                    player.spigot().sendMessage(parsed);
            }
        } catch (JsonSyntaxException ex) {
            String finalMsg = prefixed ? UtilUI.colorize(prefix) + message : message;
            if (actionBar && player instanceof Player)
                UtilUI.sendActionBar((Player) player, message);
            else
                player.sendMessage(finalMsg);
        }```
#

Relevant line is the BaseComponent[]

shut quest
#

Hi guys, so 1.16 Spigot is here and my question is if its safe to upgrade 1.15.2

#

Any changes in overworld?

frigid ember
#

hmm well you have to reset nether i think

shut quest
#

sure thats understandable

royal spade
#

Just read the announcement from md_5, he expresses caution about the 3 worlds.

I have a Vanilla 1.16.1 server right now, what should I do to make the world structure compatible for Spigot?

shut quest
#

I read it

frigid ember
#

just try backup worldname_nether and deleate it

#

then start the server

royal spade
#

Under the new world structure where is the nether/end?

frigid ember
#

DIM-2 in vanilla i think not sure tho

royal spade
#

ah

shut quest
#

I will surely do it but I am asking if there are any changes in overworld or the end, because I have pregenerated 20x20k map and do not want to upgrade if players will loose some options (like bees generation in 1.15)

undone narwhal
frigid ember
#

I will surely do it but I am asking if therr ate any changes in overworld or the end, because I have pregenerated 20x20k map and do not want to upgrade if players will loose some options (like bees generation in 1.15)
@shut quest no lol it adds updated things , it will not remove 1.15.2 things

shut quest
#

Nooo :D You dont understand me :D I mean, if there is something, what is generating differently (eg. new ore, block) in overworld :D If yes I will rather make new server than upgrading old, so players will get all new features in overworld.

undone narwhal
#

This is not helping abhiram lmao

frigid ember
#

helpong?

shut quest
#

As I see only "target" is new... And its not generating in world

frigid ember
#

Nooo ๐Ÿ˜„ You dont understand me ๐Ÿ˜„ I mean, if there is something, what is generating differently (eg. new ore, block) in overworld ๐Ÿ˜„ If yes I will rather make new server than upgrading old, so players will get all new features in overworld.
@shut quest yea

fleet crane
#

@ashen nebula bungee-chat does not support the new style hover events

#

you need to use the old value one still

frigid ember
#

After you doPacketPlayOutEntityDestroy how to bring back those entity

#

md_5 can you help me

abstract cradle
#

How do you (developers) upload the updated version of spigot, bukkit, paper etc onto server hosting websites? how does that work and when will it be done??

subtle sundial
#

you need to build it

#

or have your server provider build it

shut quest
#

@shut quest yea
@frigid ember And what is different in 1.16?

frigid ember
#

@frigid ember And what is different in 1.16?
@shut quest nether updates new block new fire

undone narwhal
#

Anyone knows how to get a Class<F, S> in reflection and how to use it ?

subtle sundial
shut quest
#

@frigid ember But this fire is not occuring in overworld isnt it?

frigid ember
#

fire will not spawn on overworld unless you make fire i think

#

i dont know much about 1.16

abstract cradle
#

@subtle sundial the server isn't exactly mine... i run it off a server hosting website

shut quest
#

I will go trough changelog... I really do not want to annoy players if there is something new in overworld what players will not get with old 1.15.2 world

abstract cradle
subtle sundial
#

@abstract cradle so yes the server hosting website needs to build it

abstract cradle
#

oh rip

frigid ember
#

well you can update worlds by putting them in your pc i think

subtle sundial
#

I use apexhosting and they updated it this morning

#

I'd suggest opening a support ticket with your hosting provider asking about the new spigot build

golden valley
#

has anyone ever moved multiverse inventorys

frigid ember
#

@subtle sundial
@abstract cradle you leaked ur sever ip ๐Ÿ˜‰

shut quest
#

@fleet crane I am courious how will devs handle the hex colors in older versions :D If there will be aproximation when eg. 1.15 player will play on 1.16 server with hex prefixes :D

frigid ember
#

dont tag them

#

i think you can get kick i guss

abstract cradle
#

@frigid ember its fine- you need to be whitelisted

shut quest
#

Ok

#

Uf

#

:D

golden valley
#

so

#

how do i get people from my lobby in bungee 1.16

shut quest
#

/server <server> ?

golden valley
#

people, not me, reguler users

#

i have advancedportas but it no work

frigid ember
#

/send player name

golden valley
#

OH thank

#

thats not a command

frigid ember
#

its will work in buangee

golden valley
#

then im missing something

#

i can /server

ancient haven
#

Once my server is on Spigot 1.16.1, I'd like to get into BungeeCord to allow my players to teleport to another world I want to add. That world has been a Singleplayer (LAN mode) world so far. Is that possible?

frigid ember
fleet crane
#

you dont need bungeecord, multiverse will do just fine

frigid ember
ancient haven
#

oh! ๐Ÿ˜ฎ Okay

fleet crane
#

just put the world folder in the server and run /mvimport

frigid ember
#

?1.16

worldly heathBOT
#

Spigot and BungeeCord 1.16.1 are now available. Please see https://www.spigotmc.org/threads/447405/ for more information.
Reminder that BuildTools is the only supported means of obtaining the Spigot server jar.

frigid ember
#

wow

fleet crane
#

if you want the nether/end from that world you will have to copy them out into seaprate folders

golden valley
#

hey md5 you know how to move multivers inventorys around? i have no luck

frigid ember
#

After you doPacketPlayOutEntityDestroy how to bring back those entity anyone i really need help ๐Ÿ˜ข

ancient haven
#

@fleet crane Multiverse. Noted. Thank you very much. Also: Thank you for doing this! I love this project and I fully support your opinion on entitlement etc. We should all be able to take a step back and chill a bit and let you guys do your ~work~ hobby. ๐Ÿ™‚

frigid ember
#

spigot is god of server software thanks md_5

golden valley
#

okay i can do everything except find and send

steep echo
#

can the 1.16.1 spigot be used on 1.16?

#

server version ^

fleet crane
#

I dont think find and send have permissions by default

#

check config.yml

golden valley
#

okedoke papa

fleet crane
#

and no, 1.16.1 only

steep echo
#

my 1.16.1 doesn't run though??

frigid ember
#

md_5 do you know what causes my dropItemNaturally to not work?

#

no errors

#

it just stays on the ground

undone narwhal
#

Hey guys, how to instantiate and fill a List with a generic type got from Reflection

#

I have a class, let's call it XYZ.class that I got with reflection

#

And I want to create a List<XYZ>

golden valley
#

you where correct md5 , not perms by default

woeful skiff
#

Hi guys, yesterday I had purchased Strike Practice plugin, it said that the payment must be confirmed manually, but still or have not verified it, can I be sure?

steep echo
#

For spigot 1.16.1 will all plugins work?

candid prawn
#

@fleet crane when coding for spigot and addon plugins, is it just java code, or more?

frigid ember
#

it will work

#

@fleet crane when coding for spigot and addon plugins, is it just java code, or more?
@candid prawn its java code

#

no one knows?

#

maybe some plugin canceling the event

candid prawn
#

@frigid ember thanks

frigid ember
#

dont have other plugins in

#

then idk

#

code looks fine check java docs

#

yep also thought it was good

#

but it works, i just cant pick the items up xd

#

hmm

#

@SuppressWarnings("deprecation") in your code

#

yes

#

so find why this happens

#

wait what

#

how?

#

nvm getData

naive goblet
#

Lazinq you donโ€™t need the HashMap implementations?

#

Just declare it as a map ?

#

Also you may declare your plugin field private final :0

frigid ember
#

event.getBlock().getData() maybe this cause deprecation warning

naive goblet
#

I think #getData does

frigid ember
#

.getData() part

#

yes

steep echo
#

Where do i go too download plugins lol?

naive goblet
#

There is a workaround iirc

frigid ember
#

what?

naive goblet
#

What version?

frigid ember
#

1.8.8

#

so its cause

naive goblet
#

Ah itโ€™s a magic value

frigid ember
#

.getblockdata i guss

#

thats not the cause or is it

naive goblet
#

Well it was probably there since 1.7 or something like that

frigid ember
#

getBlockData doesnt exist

#

wait what

#

but java docs says theire is a method

naive goblet
#

1.8.8

frigid ember
#

oh

#

right

halcyon snow
#

It doesn't exist in 1.8.8 spigot.

naive goblet
#

getBlockState#getData() iirc

#

Nvm

#

Thatโ€™s an enum?

#

getMetaData

#

^

frigid ember
#

getBlockState also cant get resolvef

#

ohh ofk

#

ok

halcyon snow
#

if your plugin is only for 1.8.8, I don't believe you'll run into any problems using that method.

golden valley
#

is there a way to remove all permission on lucky perms?

naive goblet
#

Through code ?

golden valley
#

any

frigid ember
#

just getMetaData()

#

it needs an arg inside

#

brackets

#

Returns a list of previously set metadata values from the implementing object's metadata store. How getmetadata is enum?

naive goblet
#

Huh

frigid ember
#

The method getMetadata(String) in the type Metadatable is not applicable for the arguments ()

naive goblet
#

Get the BlockState by getState or getBlockState

frigid ember
#

GetMetadata Returns a list of previously set metadata values from the implementing object's metadata store.

naive goblet
#

Then you can get the data?

frigid ember
#

event.getBlock().getState()

#

with getMetaData?

#

it says change to getRawData

halcyon snow
#

What are you trying to do, Lazinq?

frigid ember
#

tryna drop an extra block when a player reaches a certain amount of blocks mined

#

well a chance to drop the block

halcyon snow
#

So what's wrong with your current code?

#

the deprecated method getData()?

naive goblet
#

Itโ€™s a magic value

frigid ember
#

that is deprecated but idk if its the problem

#

event.getBlock().getState().getRawData()

#

got this now

naive goblet
#

^

#

Using BlockState is probably the way to go

frigid ember
#

but getRawData is deprecated

halcyon snow
#

Yeah, I don't believe that's the problem. Does this only happen with items that have a magic data value set?

frigid ember
#

yes

#

why dont you just new itemstack(type,amount)?

#

no just only with ores out of the EnumSet

#

EnumSet i mean

#

for what abhiram?

woeful skiff
#

Hi guys, yesterday I had purchased Strike Practice plugin, it said that the payment must be confirmed manually, but still or have not verified it, can I be sure?
@woeful skiff

naive goblet
#

tryna drop an extra block when a player reaches a certain amount of blocks mined
@frigid ember why do you need the magic value for that?

frigid ember
#

new ItemStack(event.getBlock().getType(), 2, event.getBlock().getData()) here

#

contact the dev

#

event.getBlock().getData() cause deprecation warning

ancient haven
#

I'm currently trying to install openjdk-8-jre on my debian jessie system. Apparently, jessie backports is no longer maintained and can only be accessed through archive.debian.org. Is there a better/different source for getting java?

frigid ember
#

not sure why you add blockdata

naive goblet
#

@frigid ember why do you need the magic value for that?

frigid ember
#

not always ores

#

I need it for my logs one

#

could remove it here maybe

naive goblet
#

Use Material?

frigid ember
#

yea

#

what?

#

but i am not sure why he does get block data

#

logs in 1.8 have :1, :2

naive goblet
#

If you only want to check the material type compare Material

frigid ember
#

just do event.getPlayer().getWorld().dropItemNaturally(event.getBlock().getLocation(), new ItemStack(event.getBlock().getType(), 2);

naive goblet
#

Oh

frigid ember
#

oh sorry

river cradle
#

Hi there, I'm trying to upload a custom map to my server, but I'm unfortunately getting a bunch of errors trying to upload it to the server... Does anyone know what that is about?

Please note that I have no plugins installed or anything, just the new Spigot 1.16.1

https://pastebin.com/PymLwB30

frigid ember
#

Can do it for the ores one

#

but wont work for the logs one right>

#

what you mena

#

mean*

naive goblet
#

Lazinq if youโ€™re 1.8 get their ids?

halcyon snow
#

he needs the magic value, else he won't be able to get the right item.

frigid ember
#

indeed

halcyon snow
#

@frigid ember I just tried exactly what you're doing and I can't replicate what's happening.

frigid ember
#

logs in 1.8.8 are LOG and LOG_2

#

and than I need all

halcyon snow
#

Do you have any other plugins that might cause this?

frigid ember
#

so LOG:1

#

no have deleted all on my testserv

ancient haven
#

I'm currently trying to install openjdk-8-jre on my debian jessie system. Apparently, jessie backports is no longer maintained and can only be accessed through archive.debian.org. Is there a better/different source for getting java?
@ancient haven ๐Ÿ˜ญ or... can I run spigot on a more recent java version? Don't think so... right?

halcyon snow
#

So the item drops but you can't pick it up?

frigid ember
#

anyone know how to bring destroyed enitity back (PacketPlayOutEntityDestroy)

#

yes

naive goblet
#

Hmm perhaps the get durability instead then @frigid ember ?

frigid ember
#

of a log?

naive goblet
#

Yeah?

halcyon snow
#

Maybe by using PacketPlayOutEntity with the entity's entity id @frigid ember?

frigid ember
#

hmm that dont work on player

#

i just destroyed player

#

nothing changed since I removed the getBlock.getData() from the itemstack

halcyon snow
#

LazinQ try printing out the pick up delay for the item?

frigid ember
#

you can check if you want to?

#

ip

#

and add via version

#

1.8.8

#

ohh ok

#

yea

#

if you are doing on 1.8.8

oak sluice
#

Anyone know what plugin is causing every link in chat to be replaced with "UNAPPROVED LINK" ? It's really messing with my plugins

frigid ember
#

Maybe by using PacketPlayOutEntity with the entity's entity id @frigid ember?
@halcyon snow hmm this will not work on player

#

chat manager

#

plugin i guss

#

look at the item

halcyon snow
#

Wild guess but maybe you could use the Player#showPlayer method?

frigid ember
#

if it drops

#

ill op you

#

Wild guess but maybe you could use the Player#showPlayer method?
@halcyon snow some bugs like name tag

opal junco
#

Did the 1.16 api publish on maven yet?

frigid ember
#

try it aand see

undone narwhal
#

Yes

frigid ember
#

LazinQ try printing out the pick up delay for the item?
@halcyon snow how?

#

havent set a pickup delay cuz it should just get the basic delay

opal junco
#

Yes
What version? I tried 1.16.1-R0.1-SNAPSHOT but that doesn't seem to work

undone narwhal
#

It works for me

halcyon snow
#

world#dropItemNaturally returns the Item it dropped. Assign that item to a variable, and print out the item's pick up delay using System.out.println or some other method.

frigid ember
#

yes system out println

#

but just print out world#dropItemNaturally

#

wont get the delay right

halcyon snow
#

org.bukkit.entity.Item.getPickupDelay() is the method you're looking for.

#

my bad.

frigid ember
#

first have to make a method for it right?

#

maybe adding this player.setCanPickupItems(true);

#

but it should do it without this

#

but ima try

#

you can do this method

halcyon snow
#

assign the org.bukkit.entity.Item that is returned by org.bukkit.World.dropItemNaturally(ItemStack) to a variable and then print out that item's pick up delay

frigid ember
#

if anything dosnt work

#

so you also have to get where the player is looking at?

halcyon snow
#

to get the pick up delay use, org.bukkit.entity.Item.getPickupDelay()

undone narwhal
#

Hi guys, I'm working with reflection and I want to instantiate a class like this:

class TestClass<A, B> {

public TestClass(A, B) {
}

}

But when I do like TestClass.getConstructor(int.class, int.class) for instance it throws a not found exception. How should I do?

frigid ember
#

try Integer.class

#

i need a hungergames plugin but i cant find any what work for 1.9 plz let me know if you know any

#

try Integer.class
@frigid ember because Integer.class is a reference of Integer (Wrapper) Class object

undone narwhal
#

Still doesn't work (int was an example I tried with other classes)

#

A and B are generic types

frigid ember
#

event.getPlayer().getLocation().getDirection().getWorld().dropItemNaturally

#

how would I make this correctly in 1 ine

#

line

#

:p

undone narwhal
#

event.getPlayer().getWorld().dropItemNaturally()

frigid ember
#

doesnt work

#

than you cant pick up the item

undone narwhal
#

wym ?

frigid ember
#

The server only checks for items to be picked up after each Player Position (and Player Position And Look) packet sent by the client.

halcyon snow
#

@undone narwhal try using Object.class as the parameters to the getConstructor method.

frigid ember
#

when i do packetplayoutdestroyentity the player is hidden how to bring that hidden player?

abstract cradle
#

@fleet crane i'm having a major issue in 1.16.1 spigot where the chunks are overriden in the nether/reset with new 1.16 chunks??? why

undone narwhal
#

@halcyon snow Worked very well thanks !

halcyon snow
#

np

old solar
#

Anyone ran into this yet?

java.lang.AbstractMethodError: Method net/minecraft/server/v1_16_R1/RecipeSmithing.toBukkitRecipe()Lorg/bukkit/inventory/Recipe; is abstract

Happens when iterating through recipes in 1.16

fleet crane
#

update

#

was fixed hours ago

old solar
#

oh cheers

undone narwhal
#

@frigid ember Did you try PacketPlayOutSpawnEntityLiving?

frigid ember
#

cant do for players

#

i think

undone narwhal
#

PacketPlayOutPlayerInfo with ADD PLAYER and PacketPlayOutNamedEntitySpawn

abstract cradle
#

I'm getting a problem when everything gets reset in the nether (1.16.1 spigot) why?

#

In 1.16.1 Vanilla, it stays normal....

frigid ember
#

i mean i destroyed player

#

not Fakeplayer

#

So how can i bring that player back?

restive cedar
#

Does EssentialsX works?

frigid ember
#

PacketPlayOutPlayerInfo with ADD PLAYER and PacketPlayOutNamedEntitySpawn
@undone narwhal Adds fake player i guss

#

Does EssentialsX works?
@restive cedar it works

undone narwhal
#

"I guess" means you should test it

opal heron
#

Can u hide npc names in tablist just randomly appearing

#

i know its not possible but theres a plugin that could block names right? or its just really no

abstract cradle
#

I'm getting a problem when everything gets reset in the nether (1.16.1 spigot) why? In 1.16.1 Vanilla, it stays normal.... Is there a way to fix this as I have all my stuff kept in the nether?

ancient ridge
#

im just wondering if it's possible to show the new fog to a player

#

even if they're in overworld

frigid ember
#

"I guess" means you should test it
@undone narwhal welll its nms fake player

undone narwhal
#

Not if you attribute the EntiyPlayer id of the player you destroyed...

frigid ember
#

hmm let me try

#

its just spawns player

#

but clint cant move

restive cedar
#

[11:33:34] [Server thread/INFO]: Prajvi issued server command: /gamemode creative
[11:33:34] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Unhandled exception executing command 'gamemode' in plugin Essentials v2.17.2.0
at org.bukkit.command.PluginCommand.execute(PluginCommand.java:47) ~[server.jar:git-Spigot-758abbe-2b00831]
at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149) ~[server.jar:git-Spigot-758abbe-2b00831]
at org.bukkit.craftbukkit.v1_16_R1.CraftServer.dispatchCommand(CraftServer.java:747) ~[server.jar:git-Spigot-758abbe-2b00831]

#

what should i do?

frigid ember
#

1.16?

restive cedar
#

yes

frigid ember
#

1.16 is buggy md_5 is trying to push patch update

opal bay
#

that's an issue with essentials, not spigot

frigid ember
#

essentials works good on 1.15.2

opal bay
#

yes, but they're using 1.16

undone narwhal
#

@frigid ember And why do you destroy the player ?

frigid ember
#

to hide them

neat lion
#

its the same with any update plugins will need bug fixes try the essentials dev builds

undone narwhal
#

Player.hide(Player)

#

Player.show(Player)

scenic osprey
#

umm hi, i recently updated my server to 1.16.1 spigot and the nether is broken, all of the land is just netherrack and no biomes like it was before, there are still piglins and i'm sure the server is 1.16 but t's all gone?

frigid ember
opal bay
#

I suggest just deleting the entire nether world folder and letting it regenerate

#

see if that helps

undone narwhal
#

Did you generated a new nether @scenic osprey ?

lime crater
#

Is this something I should be worried about?

frigid ember
#

1.16

lime crater
undone narwhal
#

@frigid ember Just use the hide method and then show after all

north moat
#

hmm

abstract cradle
frigid ember
#

hmm

scenic osprey
#

no, its strangely the same landscape but all of the 1.16 trees, grass etc is gone

north moat
#

essentialsX wont even load for me... let me make sure i have latest build of it xD

opal bay
#

uhh

scenic osprey
#

ok i'll have a look

#

ah

abstract cradle
#

I'm waiting on a response

opal bay
#

what do you mean? you were talking about Nether

abstract cradle
#

The whole nether got reset in 1.16.1 spigot, but not in 1.16.1 vanilla

#

I imagine this is relevant to what Astritex said...

frigid ember
#

@frigid ember Just use the hide method and then show after all
@undone narwhal i want clint to feel like laying

#

thats why packets

undone narwhal
#

@frigid ember Keep your laying packets, just remove the hide packet and use Spigot API for this

frigid ember
#

Just to be sure, the --forceUpgrade argument goes at the end after nogui, correct?

north moat
#

yea no still not loading

#

jenkins essentials x this is latest build right?
v2.17.2.0

frigid ember
#

hmm

north moat
#

Error occurred while enabling Essentials v2.17.2.0 (Is it up to date?)

opal bay
#

I think it'd before nogui

frigid ember
#

2.17.2.130 is the latest

opal bay
#

damn, only 130 builds out of date

north moat
#

mmm i cant find that in the jenkins not the spigotmc...

#

dev build?

opal bay
#

yes

north moat
#

mk

frigid ember
#

md_5 cant rest because of 1.16

#

feel bad

north moat
#

thanks found it

frigid ember
#

for him

north moat
#

1 down

#

hehe

frigid ember
#

@frigid ember Keep your laying packets, just remove the hide packet and use Spigot API for this
@undone narwhal yea but player can freelly move

#

i dot want that

undone narwhal
#

Create a fake player that is not linked to the existing player

#

And put its skin

frigid ember
#

thats what i am doing now

#

but i want to hide existing player

undone narwhal
#

For all online players

#

onlineplayer.hide(ThePlayerYouWannaHide)

#

and for all player joining hide him too

frigid ember
#

hmm

#

thats also i am doing now

north moat
#

gotta love the community lol

undone narwhal
#

And what's the problem

compact dove
#

I'm wanting to make a pr to bukkit API and seeing that I need to provide my email for the spigot Jira/bitbucket, I'm just curious if this email will be publicly visible or not (apart from being there in any of my commits) lol

fleet crane
#

itll only be in your commits I think

proper wolf
#

how frequently are you updating mD5?

obtuse glen
#

md_5 not to be a pain, and thank you for adding warped_sign and crimson_sign, but you also didn't add the wall sign versions of them i think.

fleet crane
#

this you mention them in the ticket :3

obtuse glen
#

someone reminded me with a ticket response.

#

want me to make a new one or..

compact dove
#

thanks :^)

proper wolf
#

MD5 is boss man

#

i am sure he will get to it

#

he deserves sleep

#

what time were you up today?

obtuse glen
#

ah so a reply is enough? just trying to learn protocol here sorry. im quite terrible at this stuff.

proper wolf
#

lol

obtuse glen
#

i haven't slept for over 24 hours myself. how about you?

proper wolf
#

oh

#

why?

obtuse glen
#

had a busy todo list.

fleet crane
#

I've added them

proper wolf
#

i slept great last night

obtuse glen
#

md_5 thank you. ~ rabs, glad to hear you slept. i iwish i could say the same, pout.

proper wolf
#

are you in AustrAYA

obtuse glen
#

amsterdam.

proper wolf
#

Ah

worldly heathBOT
#

Spigot and BungeeCord 1.16.1 are now available. Please see https://www.spigotmc.org/threads/447405/ for more information.
Reminder that BuildTools is the only supported means of obtaining the Spigot server jar.

fossil shoal
#

Is the new hex color feature only available in the bungee ChatColor class?

proper wolf
#

@obtuse glen what plugins do you maintain

abstract cradle
#

?1.17

ancient ridge
#

why is it so hot, Earth needs to turn the ac on

abstract cradle
#

awe lol

ancient ridge
#

wrong channel

proper wolf
#

very funny

frigid ember
#

Since I've never used --forceUpgrade before, is it normal for it to be listing 0% for hundreds of lines?

brave vector
#

i dont even know what is nylium

obtuse glen
#

lue: big worlds, yeh. just leave it alone, it's doing it's magic very .. very slowly.

frigid ember
#

Thanks, Floris.

proper wolf
#

Where do you put the --forceupgrade even?