#general
3141 messages · Page 475 of 4
doesn't look synchronized
...
} else {
this.lock.lock();
}```
can't something lock in between the isLocked check and the lock() call
I want to say yes but I also hope whoever wrote that is required to know better than me
yup
reeeeeeeeee

also only the public methods actually use the lock
the protected methods ignore it entirely
so hopefully no one makes non-safe child classes here
Anyone know the difference between mcmmo and mmocore
...everything?
which is better
okay lol
oic
it has classes
mmocore
If they switched to trylock it would work
Yeah mojang threading
i mean realistically it doesn't matter much since vanilla probably never runs into that
like, after the worker thread finishes making the chunk it prob does a full handoff to the main thread and never touches it again
We modify the class because of plugins
but then plugins...
wait what does cb/spigot/paper add
does it fix that lock
i wasn't looking at cb code lol
mmm mojang spaghetti
oic
Ye so we can blame
🚮
kinky
wow let me come up there and kick you off again
kicks Vertanzil off cat's massive belly

Muhahahahah
wut u tryna say u fuq
Oh noes
oh no
Wow
he got scared, I think I did too
well time to go and eat and grow my own belly
why tf are you guys erping in here again
he got scared and pussied out pf https://i.imgur.com/4tamwdB.png

pokes KennyTV
ah you're back, coward
Muhahahaha
pets KennyTV
kicks Vertanzil off wiz' block list
throws KennyTV against a wall
throws the wall against Vertanzil
Hug it
no u
bStats?
depends on the info
harmless info
wut
i mean
if you use transparent solutions then it's quite harmless because you can review what stuff is sent and what is not
sending IPs ain't really stats as much as being a malicious cunt
if they put a backdoor in their plugin, that's a backdoor with or without an ip
generally stats are anonymised, so that IPs aren't an issue
and still, it just shows that the people complaining aren't even smart enough to find out that the metrics classes are there for them to look at
Bstats still has your IP
Cause like, you make a http request
and a site knowing your public server's ip address is pretty useless anyways
and they can also identify you with the uid set in the config
not that it actually matters
What plugin can I use for RTP with 1.15.1?
Yes
Thnx
Yeah
Yes
ye
yes
Yup
hi billy
anyone else experiencing a bug in 1.15.1 where time keeps flicking to night 🤔
wtf is 1.15.1
mc

https://i.mtm123.lv/yHvo77Zk.gif
it lags a bit in the gif but you get the gist
Has not happened to me ever
let me check
F3 shows time i think
I'm reading about Cassandra and their recommendations are giving me a stroke
This is why I don't like NOSQL as well tho
They recommend denormalization (or, duplicating data) instead of having relations by id and looking shit up
Like, it feels so unsafe :(((
Well, more than just that... when something gets deleted, usually a cascade does it for me. Now I'd have to manually delete all the related things manually.
likes nosql :3
do you like data duplication as well?
╭─<kashike@korobi>-<~>-<1:27AM>-◇
╰─➤ mongo felix bin/db_count_records.js
MongoDB shell version: 3.2.12
connecting to: felix
channel_ai - 6 records
channel_ai_history - 78 records
channel_commands - 837 records
channel_topics - 8,173 records
channels - 125 records
chat_indexes - 67,374 records
chats - 15,716,879 records
kitty_images - 2 records
my_collection_keys - 18 records
networks - 7 records
reminders - 1,140 records
users - 45 records
define "data duplicated"
uhh, like channels has some channel data and a channel id or somthing im assuming and channel_commands references a channel.
how many of the channel columns and shared between channels and channel_commands
this is what I'm reading in the cassandra guide rn:
http://cassandra.apache.org/doc/latest/_images/data_modeling_hotel_logical.png
notice hotels_by_poi and hotels share 4 columns
and this is 'normal'
{
"_id" : ObjectId("5c44c99be4b0d7e5055b19bd"),
"network" : "esper",
"channel" : "#paper",
"name" : "1.15",
"value" : [
"https://youtu.be/CwfoyVa980U"
],
"is_action" : false,
"is_alias" : false
}
wut up gamers
yea whats an entry look like tho
{
"_id" : ObjectId("56eb8b9ae4b071c24ca4b3ac"),
"network" : "spigot",
"channel" : "#paper",
"key" : null,
"managers" : [ ],
"logs_enabled" : true,
"commands_enabled" : true,
"command_prefix" : ".",
"command_prefixes" : [
".",
"="
],
"commands_link_network" : "esper",
"commands_link_channel" : "#paper",
"punishments_enabled" : false,
"repositories" : [ ],
"last_activity" : ISODate("2020-01-08T01:29:34.539Z"),
"last_activity_valid" : ISODate("2020-01-08T01:29:34.539Z"),
"topic" : {
"actor_nick" : "kashike",
"actor_host" : null,
"time" : ISODate("2019-03-13T20:08:12Z"),
"value" : "Social discussions | For help, please join us on Discord (https://discord.gg/papermc) or join #paper-help"
},
"modes" : {
"C" : null,
"t" : null,
"J" : "15",
"M" : null,
"n" : null
},
"mode_string" : "+CtJMn 15",
"notify_about_korobi" : false,
"permissions" : [
"grant.command.operator.modify"
],
"reminders_enabled" : true,
"visibility" : "PUBLIC",
"migrations" : [
"aec8c7b2-c512-4743-a795-9779018d66b0"
],
"commands" : {
"link" : ObjectId("56c6add9e4b057e1e389a0d6")
},
"commands_link" : ObjectId("56c6add9e4b057e1e389a0d6"),
"seen_enabled" : true
}
so 'network' and 'channel' are duplicated
which pretty much is consistent with what im reading
kinda, but only for legacy reasons
well how would you do it if you didnt have to worry about legacy
isnt this a nosql pattern
in v2:
command:
{
"_id" : ObjectId("5c7d4c8079c58277bae94545"),
"aliases" : [
"test"
],
"channel_id" : ObjectId("5c7d4c6679c58277bae94544"),
"responses" : [
"\u000313This is a test!"
],
"type" : "COMMAND"
}
channel:
{
"_id" : ObjectId("5c7c118679c582701261ba56"),
"feature" : {
"commands" : {
"enabled" : false,
"prefixes" : [
"."
]
},
"logging" : {
"enabled" : true
}
},
"name" : "#paper",
"network_id" : ObjectId("5c7c10272d26349e2312cb4e"),
"slug" : "#paper"
}
ok well wtf, that's kinda relational
minus any db level enforcement of it being relational of course...but data wise, it's fairly normalized
like i said, v1 is all gross due to legacy shit
having been used by 3 different things in the past :)
but in cassandra, using relations is discouraged for some reason mainly to support its distributive qualities (its designed with scale in mind)
the real amazing part
it says, joins should be avoided in case the table it needs it across partitions and needs the network to be searched or some bullshit
is how much better irc logs are in v2
oh btw, once again, do you want irclogs.org?
its about to expire, i dont want money just transfer it off my acct
kk
v1:
{
"_id" : ObjectId("5c7c129de4b0153a463d985a"),
"network" : "spigot",
"channel" : "#paper",
"channel_object_id" : ObjectId("56eb8b9ae4b071c24ca4b3ac"),
"type" : "MESSAGE",
"date" : ISODate("2019-03-03T17:45:01.816Z"),
"actor_name" : "DiscordBot",
"actor_hostname" : "DiscordBot!~DiscordBot@SpigotMC-ffh63a.destroystokyo.com",
"actor_prefix" : "VOICE",
"recipient_name" : null,
"recipient_hostname" : null,
"recipient_prefix" : null,
"message" : "<\u000307Z750\u000f> he needs a taco hat"
}
v2:
{
"_id" : ObjectId("5c7c129d79c582701261ba6a"),
"author" : {
"host" : "SpigotMC-ffh63a.destroystokyo.com",
"modes" : [
"+"
],
"nick" : "DiscordBot",
"user" : "~DiscordBot"
},
"channel_id" : ObjectId("5c7c118679c582701261ba56"),
"message" : "<\u000307Z750\u000f> he needs a taco hat",
"time" : ISODate("2019-03-03T17:45:01.930Z"),
"type" : "message"
}
nice
so, do you join on the frontend or what do you do when nosql is normalized like that
as i know it doesnt support joins
cassandra says you can join on the frontend, if necessary, but instead of that, the tables should be designed in such a way that 1 query is all you need
which...goes against all I believe in.
but
¯_(ツ)_/¯
v1: https://github.com/korobi/Web/blob/master/src/Korobi/WebBundle/Repository/ChatRepository.php#L14-L23
v2 is the same bug just field('channel_id')->equals($id) basically
but*
interesting
it sucks that you can't get window for opened invs without dealing with NMS but I guess technically that could be an implementation detail
https://i.mtm123.lv/xtXUUoty.png
thank god. this solves everything tho
block them
but not like, from a specific repo or something
that just blocks them everywhere
prob could get them banned from github for that 
n word
Phan probs knows a bit about that
Blocking them prevents them from interacting with the repo and stuff
Go to their profile page
mfw blurring the word
I wonder if we send a couple thousand of nwords to iran would it be as powerful as a nuke
everyone seems to treat em like they're bombs 
"nword ends ww3"
racism solved
well technically over in iran they're not black so maybe you'd need to prefix it with sand for it to have effect
When you really want to be a slave... 
I'm quoting you :>
(for anyone who is not aware)
it's the best word to use to get at people tbh that's why
racism detected 
moderation in moderation
cancer is good to have in moderation
racism alert
not good if you have braincell count in moderation
UK: do you have a loicense to use the nword
you might end up getting too little
no kicking wiz
kick leaf for example
ull regret it

ill drink duck soup
ur already regretting
kicking cat sounds like a death sentence
yeah that's the death sentence
screenshots kyrobi out of context and sends to peta
Kick cat for science
oh right you can kick your superiors in discord can you
kick Z
can't
like actually kick
wish we could tbh
find out
wiz is right here
uh oh

if he's doing pushups with that dick I don't know what to say


unfortunately irc never forgets
mfw he jumped over to look at it
here
<DiscordBot> <Kyrobi> https://media.discordapp.net/attachments/555469074080202765/664309565487316993/unkhilnown.jpg

https://www.youtube.com/watch?v=MSxJoPJFxOg
relevant to the image, explicit audio
(DiscordBot) Tenacious D - Cock Pushups - length 49s - 982 likes, 41 dislikes (96.0%) - 326,602 views - dillpillontherilril on 2008.04.25
Question for programmers in java, how hard is java data structures and algorithms 
wat
what algorithms
all of the algorithms and structures dude
why did I even ask the answer is so simple
all of them
Yes
Literally both are stable
from my experience 1.14 is extremely laggy
not only my experience
generally for a lot of servers
lag != stability
just because it performs worse doesn't make it not stable
higher risk of corrupting chunks or frequent crashes would make it not stable
i see
(DiscordBot) Cat Sticks Head In Glass For Water - length 15s - 1,029 likes, 8 dislikes (99.2%) - 28,598 views - Snitch on 2019.10.07
oh look the furry is awake
has anyone here tried colocation before?
it's leaf
I have years ago
.g colocation
(DiscordBot) https://en.wikipedia.org/wiki/Colocation -- Colocation - Wikipedia: "Colocation or collocation may refer to: Colocation (business), the placement of several entities in a single location; Colocation centre, a data..."
Colocation or collocation may refer to:
Colocation (business), the placement of several entities in a single location
Colocation centre, a data center where companies can rent equipment, space, and bandwidth for computing services, known as colocation services
Collocation, i...
@proud lance omg I have a budget to build a really good server, What I'm wondering is, what would be an average cost per month for the colocation center to maintain this?
how much? like over $100 a month?
Usually
that's not bad
Maybe less
that's even better
Not really
I'm considering investing $3k on a dedicated server, and then going to a colocation for them to maintain it......
Because you haven't mentioned Unit size, what uplink, DDoS protection
o, i see
"for them to maintain it"
well, whatever term you'd use
They literally just give you a spot in a rack and a few cables
Beyond that, not many people in here have dealt with colo and it's heavily going to depend on providers and your needs
Go contact companies who actually offer what you're looking for in the area that you're looking for
ok thanks for the info 😍
I would say look at colo when you have a need for a portion of a rack, not one server, unless it's a specific need
Like some weirdly speced server
Do you think 1 gigabit internet connecting @ home in eastern US would work for a server?
Yes
It will
Any downsides?!
residental ISPs don't always like people hosting servers on their networks
Yes you get no support for DDoS and you have to deal with any ISP maintaince which usually brings your network down
And DDos prit didn't exist
Business also doesn't do fuck all for DDoS
That still doesn't guarentee 100%
I had a business line with Verizon
how much are you paying?
I just finished my $3k computer and it has REALLYYYY motivated me to build a $3k dedicated server.... I'm so sick of the limitations I have with OVH...
Paying more for limited ssd or I have to pick a hard drive. Not really limitations, I guess I really just want to do my own server
Limited SSD?
You said a 1 gigabit internet is fine, only thing I have to worry about are getting DDos'd, which does suck and the ISP going offline. Anything else which would make this a bad idea?
Depends on what ISP you go with
Yeah, currently on a 420SSD for my server with so you start. 50% left in space, and the setup cost for a new server is like $80 freaking bucks...
Infra1 has 960GB
cox cable, probably.
I mean, OVH is literally your issue
If you deal with proper providers, they'll offer muuuuuch more configuration
Cox will probably suck
OVH is pretty much a "we have the boxes sitting in the rack ready"
Configuration*
Also, another issue with OVH is location. It's currently in canada when most of my players are in the states
their placement is pretty reasonable for coverage of the whole US, tbh
They're a French company. It kind of makes sense they're not huge in the states lol
@proud lance why
I would never do it again
do what?
But Canada is reasonable ping to most of NA
@native thunder this is true
You get DDoSed once and your venture is done
why?
fwiw, I'll DDoS ur nan
DDoS attacks are evolving and changing every day. Rely on the expertise of Cox Business DDoS Protection. Call 1-866-446-7777 today.
Because if anyone can take down your server, now you have a 3k server you have to figure out where to house
Something tells me that that is not an included service...
Seems low
Who knows prices aren't posted
That's why it seems low lol
I am just saying if it's $500 a month it already blows the budget
One of those "if you need to ask, you can't afford it"
Yeah exactly
would a router that deals with ddos work, or no?
No
figured
too late in the chain
Router that deals with ddos 
Because you probably can't afford it either
Kinda like @void void's pullout game
Your isp won't be happy if you're being ddos'd on the regular
Nah they will just null him
well thanks for the info guys, have a goodnight 😍
And be like sorry chum
No provider is happy with dealing with DDoS attacks
even mitigation services hate it, it means you're using stuff 😛
Remember when ovh got wiped out because of a minecraft server 
It was a shame too, I spent like 5k on that server at the time
Had water-cooled over locked xeons
Overclocked
It's a home server
true I have 64 children, in 9 months 128
Sir, if your server doesn't sound like it's taking off, is it really a server?
And it's overclocked, try getting 5GHz on Xeons 10 years ago
What better way to wake up in the morning then to schedule a compile in the morning
That watersystem would need a massive upgrade these days anyways
Gotta get on that RGB game
If you're not damaging your hearing, you're doing it wrong
nou
Just don't buy it?
It's available on every part
I bought it cause it had the lowest latency
then get some strips
Or just sell it as an autistic accessory and stop adding it to everything
I remember those
my brother also sliced his finger open by sticking his finger in the fanhole lol
Retardedness runs in the family eh cat
Better than the alternative
Jk
i mean, fwiw

He could have stuck his dick in there
This is also the same brother that I convinced to stick his thumb in a lamp socket coz I wanted to see if he'd light up like in the cartoons
mfw cat is evil
He just hates his brother
Not surprising given his name sake
did I request your opinion to be heard on this channel
fursona
Did you grow out of your tastes
"I identify as an orange tabby now"
You're into ice now. Not leaves
He should get a nice title too
wtf is this bullying
Like Sir streamfrost
anyone good at analyzing timings?
Throw it into the paper-help channel and maybe there will be one :p
Company brought new San servers
Man I would love to have those in my basement
One thing 20k
Take one home with you
Stuff it in your pocket
Like that dude who walked out of a store with a TV
that's not all you want in your basement im sure
Is that a server in your pocket or are you just happy to see me
Dual socket cpu, 12x64gb ram, 10tb ssd cache, way too much storages
random question, but these bot replies, is that some kind of IRC connected to this discord or something?
yes
noice
Good morning all
All morning good
Morning, all good
All good, Morning
Good all morning
gninrom lla doog
Morning good all
i just clicked over to paper discord and the message that was on my screen was someone saying they needed help cuz @golden gust was trying to finger them.. i really hope i read that wrong
it's true, cat tried to finger Vertanzil and me
god I hate printers
depends on what you are printing
literally anything
eek
my printer has like a 2 minute warmup time whenever I want to print a document for the first time in the day
or just don't print anything, pf
or that
oh hi
send via google docs
can't
well sounds like you are shit outta luck
any images printed look like ass and it took forever to print volume
pour water on the printer and when they say why just say "I was trying to get it out of sleep mode"

lol
it's my printer, I'm not going to sabotage my own business
im telling you google docs is the way to go
ok so you can throw it out of your window and mostly no one will question you
||try fingering your printer so it becomes wet quicker?||
lol kenny
finally some good fucking advice
I finger my printer each time I need to get it to print
otherwise the paper gets jammed
not sure it's good printer advice though
some prof told us that google docs own everything you write there, haven't actually fact checked that yet
some prof is a fucking retard
im going to take my kids to school then go work... at least i dont have printer issues
well I didn't print the right docs
yeah he is, it's my didactis lecturer, and he literally has no fucking clue about didactics and completely fails at teaching us
what a fucktard
have fun, chrysti
i wish someone would finger me
i always do.. pretty much free money to drive ppl where they need to go... im in
sorry I don't finger slime
😂
lol @vestal jasper
what are you, racist vicarious?
yes
^
oh ok then
you don't need to foreplay slimes, they're literally the embodiment of wet from the get go
ok seriously on that note.....
wonder if chrysti regrets hopping in here yet
magma they dummy thicc but wtf
who doesn't wanna talk about fingering printers and slime? lol
depends on the slimegirl
listen I have nothing against slimes I'm just of the opinion that foreplay with them is completely unnecessary
#notallslimegirls

this is why I love this server
alright well fuck all yall degenerate I gotta hop on outta here to go make that $$$$$$
do any of you guys use nosql for your projects
redis
wut
redis (specifically keydb) and etcd here for few things here and there
i dont think thats what he's meaning lol
what does he mean then
awh, billy ain't on IRC
was going to erm.. yea..
finger someone again?
oops
Finger slipped
AAAH
electroniccat is just Vertanzil in a cat suit confirmed
key/value databases are nosql as well, no?
yes
Yeah
Srsly @golden gust you and your damn fingers.. smh
Cat stop fingering people and fix your meds
man my new winter clothes are in, they look sorta dum but fucking hell they feel like being in the inside of a furnace
We had like 2 days with sub 0°C lol
So how do I setup my own irc bridge bot?
So can I install the discord bridge and the lounge irc server on the same device
Ok
it's irrelevant here
So setup an irc server
i don't think you want to do that
I mean what exactly do you want to do
connect to the paper irc channel? bridge some channel on your own discord? create your own entire irc server?
I want to make a discord bridge bot for my own server
What's the paper irc channel?
What ip
it's on spigot's irc https://www.spigotmc.org/wiki/irc-guide/
The home of Spigot a high performance, no lag customized CraftBukkit Minecraft server API, and BungeeCord, the cloud server proxy.
Can I connect with the lounge
Ok so I can setup the lounge on my desk and I just use the website to connect to that?
Or do I just use the dedis ip
nvm discord managed to fuck up the history 
Making a bridge bot is pretty easy, you have both client libraries and use them to login. And you have listeners to send message events and stuff to mirror stuff
Something something.... tada
inb4 ping
interesting...
discord has amoled dark mode as well
basically tap dark selection in appearance 10x
only on android tho
ye
discord white theme give you cancer and an early death
Yeah I'm in it but it's now showing
register ur nick
nice
im with the big bois
so if i leave thelounge running on my dedi it should log everything right
that's the idea.
That's completely ridiculous.
coughfraudcough
at least you are paying them above minimum wage to work there
one casualty that people seldom bring up regarding the trump presidency is the loss of the illusion that the US gvt might know about aliens and keeping it a secret
because there's a 100% chance he'd tweet about it halfway through the sentence in which he'd first be hearing about it
probably in 4 parts and with terrible grammar
Is using sockets the best way to communicate between servers with any amount of players?
I would say it is way easier using REDIS PubSub
(⊙_◎)
@jfoerster_atx Hi Jonathan, the job posting has been removed and we are investigating further. Thank you. ^DR
yes
it's a fake posting
not "the posting was never there"
it's just not a real job offering
anyone have any experience setting up nuvotifier and a listener for a waterfall network?
followed the guide on github but it's not having it
yea try that
So how did everyone learn java?
I learned my favorite programming language: Bukkit /s
Also through YouTube videos of other fellow Spigot devs!
cries in TheBcBroz
... most fancy looking online tutorial sites that make you code and text stuff on their website in dedicated chapters should be fine
I first got to java in a class in school and later through some friends
I'm still looking for good Java tutorials to recommend people, Kenny, so if you've got an example, that'd be much appreciated 🙂
I’ll see if I can find what I once did, was quite a nice and structured site
And free as well
for a second i thought you were saying "i'm still looking for a good tutorial to learn java"
i was like
mfw
Well, I myself would like a nice in-depth article of some sorts that goes into (a lot of) detail on the optimizations made by Java's JIT compiler, but my Java should generally be good enough.
The one I'm using currently is on udemy it seems pretty good. And is updated regularly. https://www.udemy.com/course/java-the-complete-java-developer-course/
Openjdk boys have jit docs somewhere
iirc I once used https://www.codecademy.com/learn/learn-java
I checked the one at Codecademy out at one point, but when I did it I felt that the OO stuff came way too fast and that they went over it too quickly. But it looks like they updated it, so I might check it out again.
so what discord bridge bot do you guys use?
pretty sure Z made the bridge
webhook?
I don't think that's the bridge
this should be https://github.com/zachbr/Dis4IRC
oh whoops I linked the bot 🙃
Hmm
Hmm
literally irc never forgets
Figured it out. It was pihole.
// List of webhooks per channel
"webhooks": {
"#discord": "https://discordapp.com/api/webhooks/owo/noice"
}
}
]```
lmao
Use discord channel ids
Not names
For everything
I don’t test with or care about names, they’re super brittle
I should just make it scream when someone uses them
tacos are super brittle too
Duck’s self worth is also quite brittle
it's only because of bullies like you
u are here enough
oofers
.rekt
☑ CorREKT
😦
how do i setup the webhook on my bridge bot?
don't choke on a taco tho
We used to use Wacom everything for drawing pads just because they’re so well supported by other stuff
I think most were the intuos(?)
^
Is that the one that has no screen on it, it's just a pad you use a pen on
Idk, for me, I feel like that would confuse the fuck out of me
its not that hard
idk I’m not an artist
kind of like a trackpad
We had one with the screen, gave us more problems than the others but it was nice
Quite the price hike though iirc
I'm not either, I'm just wondering if they're fairly affordable as I'd /like/ to practice drawing stuff digitally
This would’ve been two years ago though
you can get a p cheap one
mainly, erasing bullshit without ruining the entire canvas (cough cough actually drawing) is a perk for me
i'd sit and just do art because of that
@void void do you know how to setup this discord bot webhook i have the bot setup but the webhook doesnt work
what part is failing exactly
looks like it's not able to connect to irc
ok well that log doesnt indicate what you're telling me
it says error event from irc lol
// List of webhooks per channel
"webhooks": {
"#discord": "https://discordapp.com/api/webhooks/owo/hmm"
}
}
]```
log doesnt matter than
i have my webhook link
idk dude, curl your webhook url and see if that works
ok
it works
{"type": 1, "id": "664599798250209311", "name": "Spidey Bot", "avatar": null, "channel_id": "641034265789988871", "guild_id": "641034051666313227", "token": "hhhm"}root@ptero:/home# ```
so you're doing something wrong in your code and/or your library is stupid
ill get my config
is this like a custom app??? or a discord library?
discord-irc https://github.com/reactiflux/discord-irc
Might be the nodejs one
and...sanity check...#discord exists where you're running this...right? Because that's exactly copy & paste from the guide
you told the webhook to delivery messages to #discord
it has to be #discord
or rename it in config
to whatever channel is meant to receive the messages
"641034265789988871": "#minusmc", // Add channel keys after the channel name the #minusmc is the irc channel and the id is the discord channel
Open an issue and reach out to the creators
ok what irc bot does this server use?
idk it's something Z made its on his github
ill try that
you could do either
i cant fine the java file
i cloned the repo
nvm
how do i make it use a password?
password="yourpassword" in the irc{} section
also Z, is that meant to be Peer u noob
nice you fucked up the config
oof
just like everything else in life
k
ill just copy from the repo
k
And no, it isn’t
👀
Fucking kids
oof
Why you calling me a kid
must have removed em lmao
wut
what'd you boys do to get z riled up
i called him a noob
but we all know there is no bigger noob than our very own @stuck badger
what is an irc pier
¯_(ツ)_/¯
or an irc peer
it wasnt
"712345611123456811"="#bridgedChannel"``` it was
```channel-mappings {
712345611123456811=#bridgedChannel```
congrats
ty
jeffery epstein did
That’s just going to be a mega oofers comment yeah
you asked
context 
wat
Z
wat
watt
wattt
can i make the bot do cmds on start?
ie msg NickServ identify <password>.
oh nvm it worked
[16:27:56] [default] [ERROR] - Unable to get a discord channel for: 641034265789988871 | Is bot present? what is the channel id and the bot is in the server
bot isnt online tho
nice it works now
wat for
my finger
what occured to ur finger 
oof
🔪
we got 10 fingers surely won't miss a finger or two
DiscordBot_> <Starchy> Dop I leave for a couple hours wtf did you do
good lord
just test for everything why don't you
there's like
14 checkboxes checked on the blood tests form
i blame @static badge
getting tested for aids?
literally everything it seems, from standard hematology to thyroid to standard things like sodium/potassium
ugh, i hate moving a server with so much data
^
Takes hours! And my world is relatively small
#RsyncMasterRace
no need to move a server if you shut it down permanently
then mek sur 2 delet urself
u first
alright time to ban kash for xray
no @vestal jasper that's not how it works
i'm the one being x-rayed, not the one x-raying
just use an alt ez pz xD
you're the rude one
no wiz go back to sleep!
yes, kick @vestal jasper
I'm not the person who's using xray
please if you're going to fuck me at least take me out to dinner first
I'm not as much of a whore as @heady spear
i already ate
I have standards
no you don't
:(
hi phanatic
zip it then ship it takes like 5 mins 
wiz could kick user with this id: 89835805933076480 ?
inb4 176340309574156289 gets kicked instead
Is 1.15 notoriously slow?
not any worse than 1.14
aka yes 
So 1.14+ is slow for startup?
why does everyone care about startup times so much, like for real
thats the most pointless thing to spend time stressing over
Yeah except for when you're between reboots and it takes a good two minutes to get everything back up
but I can't play on me mc surver for 3 minoots D:
When you're trying to work fast, startup times are a major delay
Not even trying to play, just trying to do setup
if 2 minutes of downtime is damaging to your server, something is very wrong
I disable spawn chunk loading and that works well enough for me
Sounds like chunk loading is a huge unoptimized pile of garbage
you must be new here
Not in the slightest
fairly certain they are
chunks are the laggiest thing in minecraft. nothing new there
if you have stepped foot in here for more than 2 seconds since the release of 1.14 you'd know extremely well how optimized and performant 1.14 is
if your server launch time is very important to you, disable spawn chunks in your worlds and it will load significantly faster
btw, if you've played single player since 1.14 was released you'd be familiar with the square loading thingie that takes forever
yeah, thats the server loading chunks on startup
yup, why they chose to do that square instead of like a loading bar or something a normal user would understand i have no idea
because cube game
but a loading bar would probably be useless, since they still do 100% 100% 100% 100% 100% on the loading percentages
well, have you noticed the colors in the square? one color will fill up first, while another one has to catch up
the server does this too, but it seens the progressbar is for the first thing
no idea what they are, but theres 2 things loading
every system in minecraft is so overly engineered and cryptic, who even knows
ikr lol
it's likely showing the status - loading, loaded, ticking, entity ticking
well, whatever it is, the server console outputs the % of the first thing, which is why it shows 100% a few dozen times before its done
it's likely retarded

.pray
Fix Version/s: Future Version - 1.15+
maybe all of the new lag in 1.16 will be contained to the nether, and then we'll just have to tell people to disable their nether to improve performance
what about the old lag tho
we just accept that and wait for 1.17, which will of course fix it!
and if that fails us, 1.18

the problems of the current version will be fixed in the next version 😏
Minecraft 2 
quack
no u
🗡️ 🦆
I remember people calling mojang retarded for "not knowing how numbers work"
mfw
"1.10 isn't a thing it's 2.0 learn how numbers work"
2.0 obviously comes after 1.99
3.0 is after 1.99
no after 1.9969
1.999999999999999999....9999
it needs more nines
2.0 is enough nines
What they should have complained about is not that 1.10 is not a real number
they should have just released 1.99
But moreso that 1.10.x is not a number
then 1.999
What is this bukkit resourcemanager
I've not really stayed up to date with minecraft features except for the blocks and nonsense
1.15.1 will kill my computer 
how can a number have TWO decimal points tho 
TFW the server sticks around at [22:24:15 INFO]: Reloading ResourceManager: Default, bukkit
Currently 22:43
Still that line
I'm moving my server and since it's taking so long to move and so many files, trying to cancel the ones that I probably won't need and that can quickly regenerate if needed. so I have some questinos
Whats is world/poi and world/stats

