#streamchat

1 messages · Page 255 of 1

toxic rampart
#

That's part of the problem

#

I like a LOT of shit lmao

ocean agate
#

game doc, engine, language, then code... i guess some engines use mutliple languages

toxic rampart
#

Any moment I got multiple projects going on at once and then my ADHD is like, "Nah, that's too much, we're gunna play Ultrakill now"

shell osprey
#

quant dev is probably pretty fun honestly, you'd be working on less code that has to do more and pushing the boundaries on ways to do so
basically a puzzle game you can't look up the answers to

shell osprey
#

yeah that stuff's sick as hell

#

A guy I know works devops in that field and has stories about companies moving halfway across the city to get marginally lower latency, or setting up radio dishes on the rooftops to get the same effect

toxic rampart
#

But Fr.
This.
Like I sorta joked a few days ago, I'm starting to think people should have to learn how to at least make a ball move in 8 directions in whatever engine before shidding and farting online.

fluid dome
#

Is it taboo to show off a commission wip for an artist you're paying to draw a character for you?

nova bough
fluid dome
#

I am still relatively new to the world of comms so idk the etiquette

idle hill
waxen comet
#

it can also die

toxic rampart
#

Congrats.
You both made GAMES

waxen comet
#

clearly im game dev

toxic rampart
#

No snark

nova bough
#

killing the blobs was wonky, but it mostly worked. and i dusted off the cobwebs in my brain on how to do ooo

idle hill
fluid dome
#

If bananas are long lemons, this also implies that lemons are short bananas

waxen comet
#

i shall now make doom eternal using nothing but a pen and a piece of paper

toxic rampart
#

LETS GO

waxen comet
#

if bananas are long lemons this implies that lemons are berries

toxic rampart
#

1 FP 10 minutes

shell osprey
opaque raven
fluid dome
waxen comet
#

the issue is some of them are uh

idle hill
waxen comet
#

kinda way too big of a scope for me to do

toxic rampart
#

But legit.
It's a simple thing to do, but it helps to give perspective to just at least start doing the thing.
And that's awesome.
Even if it's just a PNG moving on screen with a controller.

fluid dome
flint ember
fluid dome
#

Like, I know I shouldn't hyperfocus on my dream game (soulslike action rpg) but god damn if the concept isn't already thrilling

flint ember
#

(Minimally viable product, not most valuable player )

waxen comet
#

is the gamejam as a team

waxen comet
idle hill
toxic rampart
# waxen comet kinda way too big of a scope for me to do

I actually have an idea regarding that.
I have a couple of larger scope game ideas I'm really passionate about but jumping feet first into that would spell death for the momentum.

BUT, breaking down the mechanics I want and making those into small itch or pico games focused on those idividual mechanics would give me the experience over time.

shell osprey
# waxen comet kinda way too big of a scope for me to do

You should write down the ideas that are too big so that you can eventually come back to them later when you stand a reasonable chance at assembling a team to execute them. May never happen, but writing that stuff down is good practise for organising your thoughts anyway

waxen comet
#

theres this one boss from a gacha game i want to mod into games

#

its this one

shell osprey
#

Makes it easy to rope people into working on them too if there's a nice spec already

waxen comet
#

you enter the fight -> immediately launches a barrage of one shot moves at you

#

its a fun boss

fluid dome
#

Dragon Quest 9 is a game that moves me to tears to this day

flint ember
#

You know, in all of this game dev conversation, I'm a little surprised there isn't a game dev channel on this community

#

I guess because that's a big part of the community? So it's not really off topic anywhere?

waxen comet
#

theres a channel for it tho

#

general chat gamedev

#

theres an entire list of channels for it actually

#

ranging from marketing, feedback, game design, to the different game engines

flint ember
#

Am I blind? I see no such channels 👀

#

Oh! I forgot the whole "Hey what are you into" deal.

flint ember
#

Excuse my gaping lack of discord knowledge. This community is the first one I've ever dropped into for more than just voice chat with friends

ocean agate
#

no worries

opaque raven
#

Aaaa twitch chat is too fast for me

hazy storm
#

Yeah i can barely follow

#

The mods need an extra helping of bread today

jolly sky
#

Admittingly it's not as precisely worded as that, but he says many times that it is dependant on the perspective and use the code has.

Like he brings up examples of using comments in code so that other people can easily see what that code is referencing etc, and other examples of why certain people would do what etc, which all ties back to the understanding and perspective of why something is programmed a certain way

#

So if for example, if he knew about the ARG side to Heartbound, I'd like to think he would then understand why certain things are done in a certain way

shell osprey
#

He did a followup vid that reacted to other followups, so it's possible he'd do another if informed about the ARG angle. Based on what he said I'm not sure he'd change his mind much though

spring rover
#

is this urs? can i give u feedback?

waxen comet
#

its not the best code tho so

spring rover
waxen comet
#

yea i overcomment cause i can barely remember code when its just entire lines without any

#

i can barely tell you how to code bubble sort to begin with

#

everytime i code i basically try to "re solve" the code

spring rover
storm roost
#

i only make dumb things like

#
    static constexpr std::array<size_t, sizeof...(Types)> sizes = { sizeof(Types)... };
    static constexpr std::array<size_t, sizeof...(Types)> offsets = [] {
        std::array<size_t, sizeof...(Types)> result = {};
        size_t offset = 0;
        for (size_t i = 0; i < sizeof...(Types); ++i)
        {
            result[i] = offset;
            offset += sizes[i];
        }
        return result;
    }();
    static constexpr size_t totalSize = [] {
        size_t total = 0;
        for (const size_t size : sizes)
        {
            total += size;
        }
        return total;
    }();

    std::aligned_storage_t < totalSize, std::max({ alignof(Types)... }) > data;

    template <size_t Index>
    static constexpr size_t computeOffset()
    {
        size_t offset = 0;
        for (size_t i = 0; i < Index; ++i)
            offset += sizes[i];
        return offset;
    }

    template <typename T, size_t... Indices>
    static constexpr size_t findIndex(std::index_sequence<Indices...>)
    {
        constexpr bool matches[] = { std::is_same_v<T, Types>... };
        for (size_t i = 0; i < sizeof...(Types); ++i)
        {
            if (matches[i])
            {
                return i;
            }
        }
        return static_cast<size_t>(-1);
    }

    public:
        template <typename T, size_t Instance = 0>
        T& GetData()
        {
            constexpr size_t index = findIndex<T>(std::make_index_sequence<sizeof...(Types)>());
            constexpr size_t offset = computeOffset<index>() + Instance * sizeof(T);
            return *reinterpret_cast<T*>(reinterpret_cast<char*>(&data) + offset);
        }

        template <typename T, size_t Instance = 0, typename... Args>
        void ConstructData(Args&&... args)
        {
            constexpr size_t index = findIndex<T>(std::make_index_sequence<sizeof...(Types)>());
            constexpr size_t offset = computeOffset<index>() + Instance * sizeof(T);
            new (reinterpret_cast<char*>(&data) + offset) T(std::forward<Args>(args)...);
        }
    
        template <typename T, size_t Instance = 0>
        void DestructData()
        {
            constexpr size_t index = findIndex<T>(std::make_index_sequence<sizeof...(Types)>());
            constexpr size_t offset = computeOffset<index>() + Instance * sizeof(T);
            reinterpret_cast<T*>(reinterpret_cast<char*>(&data) + offset)->~T();
        }
    
        GenericRegistry()
        {
            (ConstructData<Types>(), ...);
        }
    
        ~GenericRegistry()
        {
            (DestructData<Types>(), ...);
        }
still quiver
#

CODE

jolly sky
#

We don't like seeing code in this server /j Goblins

storm roost
#

monka whatever one does the shaking

muted robin
#

Oh look is that thor's facebook for business people profile (ref to a TTS)

elder pivot
#

What is the counting number in the stream?

gentle mortar
serene valley
elder pivot
#

lol I thought it was something like that

#

That is insane

muted robin
#

actually clicks/views are only one metric and arguably watch time is more important, and it's actually really bad for monetization if someone's videos get a peak of watchers at the start and instantly drop out only a few seconds/<1 min into the video. so in a sense a view can actually make things worse for the video lol

hasty grail
dusky grove
#

they're still at it eh

still quiver
#

Christ you just sit in their brains man

minor nymph
#

Look at how many insane comments this has

tribal canyon
#

its almost funny seeing how mad the internet gets when it doesnt get its way

muted robin
#

seconded. if applicable, your workplace will often have an AI/generative AI use policy that you can reference for guidance on what you can/can't do with code written for work

keen crane
#

The problem is that the toxicity leaks , and its soul consuming even to watch
I cant even imagine being the target of all that negativity

ocean agate
#

new game @minor nymph

keen crane
tribal canyon
still quiver
#

Sad. Imagine telling someone to their face that their pet died because of some irrelevant bullshit.

#

Large oof.

jolly sky
#

Felix Colgraaaaaaave

muted robin
#

can confirm, i edit science articles as a side gig and i've seen some cool AF, really important stuff be done with AI algorithms for stuff like predicting flood levels

muted robin
#

god these people are so abnormal

#

"probably a child" no children are playing hardcore wow classic KEKW

#

only the man-child variety

swift lily
winter sierra
#

Nice

muted robin
#

thank god at least one huge streamer is normal about thor (aka asmongold) and when he hears about people getting banned for saying rude stuff in thor's chat he goes "yeah if you go into someone's chat and insult them you're going to get banned" (and then calls them a slur adskjlflsdk but still)

#

ppl are really reduced to such smug debate-bros that they think they're entitled to come into chat and say whatever they want then take being banned for a-hole behavior as some sort of gotcha

idle hill
frozen sonnet
#

Actions have consequences. Oh no.

#

People are insane

hazy storm
muted robin
#

if i ever become a streamer i'm going to ban everyone i don't like, but also some people i do like, just to keep people on their toes and remind them that life isn't fair /j

#

i'm going to do like The Lottery and demand periodic bans of random users as a blood sacrifice to myself

frozen sonnet
#

They love to have a person to shit on, they need the feeling of having someone to shit on and it to be seen as “right” even if it’s vile

fluid dome
# minor nymph https://www.reddit.com/r/LivestreamFail/comments/1lxngdj/piratesoftware_banning_...

The Internet is a failed social experiment, I'm thoroughly convinced. Like, genuinely. You would not see this kind of behaviour from actual decent people irl. The only reason they feel justified in making these kinds of heinous and, quite frankly, sickening comments is because of the anonymity of forums like this. Actual dogshit human beings in the replies.

This is not even the worst of the vicious lies and hate I've seen, sadly. One comment on one of your twitter posts literally compared you to Jimmy Saville.

Another one the other day threatened to harm the ferrets in a pretty graphic way.

I don't think I'd have the mental fortitude to actually handle this in the way that you have, so genuinely, you and the entire mod team have my highest level of respect and love.

Please Please please stay safe.

umbral gazelle
#

okay qoute not correct

#

gimme a sec xD

muted robin
exotic forge
#

Be careful, CodingJesus might come after you for using pascal case instead of camel case for your variable names

fluid dome
#

What angers me most about this entire shitshow is that people are genuinely making these insane comparisons between Thor and actual convicted criminals who have done far far worse than simply giving an opinion on the Internet.

exotic forge
fluid dome
#

Even I have people I hate with a burning passion but I'd never actually wish death on them, Jesus Christ

muted robin
muted robin
#

[my INT drops to 0 and i am instantly killed]

river cargo
#

honestly, i'm just excited for when livestreamfail redditors and skg socials realise that they are the lolcows

idle hill
#

That's what pisses me off the most I would say
They call it "criticism"
That's not criticism, that's mockery and they know it
And they should get professional help

fluid dome
#

And it genuinely makes me sad and just want to not be on the Internet too because I love the shit out of everyone in the community and the community itself but the people who don't see what we see and just jump in ruin it for everyone else.

They're not doing this because they're in support of something or defending something else, they're doing it because they're online and can hide in their bedrooms trying and failing to be edgy 4channers.

The difference is 4chan used to actually make an effort to be creative with how it shits on people.

jolly sky
river cargo
#

nah, i wouldn't say that about all of them

#

i think many will come around to being wrong

muted robin
#

sometimes people escape from such toxicity, usually when they get an actual life IRL and realize there are more important things

idle hill
#

If they had none of this anonymity and tried to say that vile stuff in front of someone irl you know they'd get a punch in the face at least

#

I don't know why they think it's ok when it's online

jolly sky
umbral gazelle
muted robin
fluid dome
#

And tbh, all of this is just reinforcing my reluctance to actually stream and be a digital creator bc genuinely who tf would put themselves out there in this climate? If this is the level of shithousery for someone like Thor imagine how bad it must feel for someone who doesn't have his wear with all?

river cargo
#

honestly, in an irl room of 100 thor haters, i reckon the majority would turn against someone saying a comment like that

#

it's way too far

muted robin
#

werewithal* but yeah, it's sad and scary

river cargo
#

they'd still harass him over games like wow and outer wilds but they'd instantly shun anyone who said that IRL because that shit weighs on your conscience when you actually say that

muted robin
#

what i hate about this situation is that thor is big enough and emotionally stable enough to tank this amount of scrutiny/hate, but a lot of people aren't. and this sort of mob violence is being endorsed and rewarded, meaning that people will feel free to go on and harrass the next "lolcow" because it worked so well the last time

river cargo
#

it's basically a sin

muted robin
#

it's never just about one person and whether they deserve it or not, it's about the climate created by endorsing and tolerating such behavior as long as there's a thin veneer of "deserving"

fluid dome
river cargo
exotic forge
#

Stop Killing Streamers

nimble fractal
#

Where do you store your empty health potions? The bottle has to go somewhere right?

SUPPORT US ON VIVAPLUS - https://vivaplus.tv
MERCH - https://vldl.shop
ALL SOCIALS - https://vldl.info
WATCH US STREAM! - https://bit.ly/VLDLtwitch
SERIES PLAYLISTS - https://bit.ly/VLDLplaylists

▶ Play video
river cargo
#

they know it too, but they're happy to do anything to make someone tick on the internet

exotic forge
#

Mods need to protect Thor's space

#

That's the only way I see it. Thor can't just close chat and shut down his community

idle hill
#

There's
1: disliking someone's way of speaking
2: disliking their opinion
3: attacking their character
and then there's 4: attacking their loved ones

Most REASONABLE people stop at #2

fluid dome
exotic forge
#

Uh oh, here they come

#

We outed someone

#

Joined July 8, 2025, around 4 days ago ^

idle hill
#

Are you referring to Thor's original response, which he's realized his mistake and apologized for?

#

Look into the wording
Most reasonable people
That doesn't mean there isn't anyone past that point

exotic forge
#

I can't tell if they're playing dumb or a troll. Let's wait and see

#

They're typing a response right now

muted robin
#

i think referring to someone's "used care salesman BS" or calling an initiative "disgusting" in the context of a specific movement can be incendiary dialogue, but it's very, very far off from things like accusing someone of having a personality/pathological disorder (narcissism), accusing them of sex crimes (rape, beastiality, etc), doxxing and swatting them, and sending death threats

exotic forge
#

So are you going to ignore the fact that Thor has apologized?

muted robin
#

like. saying "eat my entire ass" is rude but it's not trying to destroy someone's entire career or literally trying to get them killed

jolly sky
#

Other than that 10 second clip of Thor talking around Ross that every slop drama farms, I've never seen Thor attack anyone's character.

And that wasn't even attacking Ross's character, that was an emotional reaction to something he considers to be dumb from his own experience and knowledge

exotic forge
#

So why do you say Thor is unreasonable when he's apologized for his words against Ross?

muted robin
#

there's normal people behavior of being a jerk sometimes and then there's whatever tf LSF and anti-thor ppl have going on

exotic forge
#

Thor acknowledged he said some harsh things against Ross and he apologized for them.

I wonder why Xerxis is still staying Thor is an unreasonable person monkaHmm

muted robin
#

and also whatever ross has going on of saying he doesn't want to start drama but then saying 'if you're not with us you're against us and you're in favor of destroying games' and then making a video that kickstarts multiple weeks of ongoing hate KEKW

exotic forge
#

Why are you asking such a question when Thor apologized for his actions?

muted robin
#

i'd say it depends on who you ask. i personally think that thor's past comments were rude but not unreasonable/unjustified, but going by the fact that he's apologized for them, he'd probably say that he was unreasonable in the past and other people might agree with that

umbral gazelle
#

Every time we have these discussions we keep going in circles monkaHmm

exotic forge
# echo charm Please, just stop

Hello Joined july 11, 2025

I'm not going to follow this. I am however interested to hear on what you have to say about the matter

muted robin
#

yeah, xerx is just asking questions

exotic forge
#

Answer the question my dude

echo charm
#

Maybe, mayne not. Thor is only human

muted robin
#

they seem genuine

echo charm
exotic forge
exotic forge
muted robin
echo charm
exotic forge
echo charm
exotic forge
#

Your exact quote was "I say that being listed as a step too far and wanted to ask the question if when he made those comments was he being unreasonable?"

Thor already apologized for his words against Ross. Why are you asking this?

jolly sky
#

He's asking us if we think he was unreasonable. And in some cases yes.

But lets say someone put a document in front of you, that wants to change the law in an industry you are a part of or had experience in. And this document completely ignores the laws that exist for a reason. Like for example, ignoring the safety warnings on Electrical equipment and you were an Electrician.

If that were me my first reaction would also be "What the hell is this?"

exotic forge
# echo charm Ah. I see, you're one of those

I hope you become a valued member of this community. I see you joined on July 11, 2025. I hope you're not here to start any drama. I'm curious to see how you tackle these topics. Have a fun stay here!

nova bough
echo charm
echo charm
umbral gazelle
#

become grass eater like me

#

get +10 to reasonability stat

dusky grove
#

hoo boy, seems like I came into some heat in the kitchen

exotic forge
nova bough
#

oh, not just the right idea, i touched grass earlier today

idle hill
#

The fact that Thor acknowledged his mistake and apologized for it shows he's grown as a person and is in a headspace that is more reasonable than in the past, when he was shown an unreasonable presentation of a, to put it frankly, ridiculous request.

dusky grove
#

Here's the thing. People will always cross that line at least once. What's important is what happens after. Do they do it again, do they stop and grow from it, do they try to grow but slip up sometimes

idle hill
#

Yes, he may have done some unreasonable things, but that doesn't make him an unreasonable person.

umbral gazelle
muted robin
exotic forge
dusky grove
#

and from what I've seen so far, thor is option 3. and to me, that's still reasonable

echo charm
exotic forge
#

Internet harrasses, swats, doxxes, threatens Thor
Xerxisis717 silence

Thor says some harsh things about Ross and apologizes for it
Xerxsis717 DAE THINK THOR WAS UNREASONABLE?

echo charm
#

Zoom in all you want, doesn't make it a mountain

nova bough
gray fable
#

is abandonware a game that hasn't been updated in years, and is slowly breaking as a result?

echo charm
tribal canyon
idle hill
#

So do you think his apology wasn't genuine, or that he made it in response to others attacking his character?

#

This isn't a 1 or 2 option thing btw just asking whether any of those apply

exotic forge
#

What do you mean by removing prior actions from the equation? You mean that Thor is human and after thousands of people harrassing and threatening him for months he makes a mistake and you're holding him to that?

muted robin
#

I feel like the other part of this to me is that people are attacking the genuine-ness of his apology but like.... who is he apologizing to? If he's apologizing for being rude to Ross, then giving/accepting the apology is entirely between Thor and Ross and, frankly, I don't understand how the eff it's my business or anyone else's business whether I/we personally think it was a valid apology. it's literally not about me so i don't have an opinion bc i don't care and i'm not either of the involved parties

gray fable
#

ok new question: is the reason a game gets regular updates because the code eventually breaks?

terse pelican
muted robin
#

the alternative is that people don't accept the apology because they feel they're the aggrieved party being apologized to, in which case i ask...... was thor victimizing you personally by dumping on a petition? because if you demand an apology for your feelings being hurt bc he criticized something you like, you're not actually owed an apology, you're just entitled

idle hill
echo charm
tribal canyon
echo charm
nova bough
exotic forge
#

And to answer your earlier question. I think Thor was wrong for his harsh words against Ross. I don't think Thor is an unreasonable person. Anyone in that situation would eventually have moments of weakness.

nova bough
#

sometimes graphics card driver will break something, but eh

terse pelican
muted robin
#

you have been very nice and polite in this conversation btw, you mentioned adhd/autism so i thought i'd let you know that your tone is fine at least to some people here

echo charm
terse pelican
nova bough
gray fable
#

i have no idea where i got the implication that code eventually breaks overtime like its an old man or something

echo charm
terse pelican
exotic forge
#

I think you're just too focused on putting Thor on the pedestal of being the perfect human being and pointing out small mistakes that anyone in that position would've done

terse pelican
#

Like, Old Dos games aren't ''functional'' in the normal sense on a Modern PC without some kind of midde-layer, Like Dosbox

echo charm
serene valley
terse pelican
echo charm
serene valley
terse pelican
wet storm
idle hill
#

There's a good chance I'm the same, never got tested unfortunately.

I prefer to take what the person apologizing is saying at face value the first time, and hold them to it - if they make the same mistake in the future, I will know the previous apology wasn't genuine or they didn't take the steps to improve themselves.
I've seen AdmiralBahroo go through much of the same hate Thor is getting on a smaller scale, he apologized for his mistake and went to therapy to address it. Bahroo's a very different person now than he was in the past.
I believe Thor went through a bit of that in his talk with Dr. K, though the change is much less noticeable.

wet storm
nova bough
#

its also harder because this hate is 110% not normal

jolly sky
#

Lmao the Note 7 mod

exotic forge
#

Well frankly, I don't think it's anyones business to determine whether the apology to Ross is good enough or not. That's between Thor and Ross.

wet storm
nova bough
#

the internet for some reason wants to know way too much about their streamers and their relationships

idle hill
#

exactly
who the hell are we to determine if the apology is genuine? It wasn't for us.

echo charm
silk scarab
#

hey guys

#

no skg talk

idle hill
#

Hiya mat

silk scarab
#

do not discuss drama

tough wind
#

I found a bug on Heartbound, is there a place to post it and find help?

wet storm
echo charm
hazy storm
#

Hello how's everyone doing today

echo charm
wet storm
#

There's AEW pregame in half an hour

silk scarab
exotic forge
echo charm
#

Oh right

tribal canyon
echo charm
#

The petition

wet storm
terse pelican
hazy storm
echo charm
idle hill
#

I'm... struggling with Godot OMEGALUL

wet storm
tribal canyon
silk scarab
wet storm
#

Oh no I did it again

wet storm
hazy storm
wet storm
#

😠

silk scarab
#

:)

nova bough
terse pelican
jolly sky
#

Yea we had 5 days of discussion in a temporary channel, we're done getting into that

tribal canyon
silk scarab
tribal canyon
#

🇬🇧

silk scarab
#

or do what it says on screen and @ thor with it on twitter

terse pelican
hazy storm
tough wind
idle hill
jolly sky
tough wind
echo charm
jolly sky
silk scarab
terse pelican
echo charm
hazy storm
echo charm
wet storm
tough wind
# jolly sky No. Not the steam overlay.

Yeah, I printed with steam overlay to prove I'm not pirating the game. The steam overlay is saying I'm playing Heartbound, the background Steam Downloads page is to prove I've download the game recently

#

The "pirate" message is the focus too

echo charm
wet storm
#

Don't mpreg react me I'm right

exotic forge
idle hill
#

So the game thinks you're pirating the game even though you downloaded it from Steam?
and you already tried verifying the file integrity?

wet storm
#

NOT AGIAN

#

STOP

terse pelican
echo charm
tough wind
hazy storm
#

Im not sure

idle hill
#

SinderShrug could ticket here for heartbound and ticket for steam support

hazy storm
#

Ya hedge your bets

echo charm
#

I prefer to hedge my hogs

tough wind
#

i prefer to hug my hedgehogs

jolly sky
waxen comet
#

clearly aint regular
they have shoes

#

regular hedgehogs dont have shoes

tough wind
#

you can put the shoes on regular hedgehogs

#

I guess you could say the colors aren't of regular hedgehogs tho

rain widget
#

Twice now I have replied on Twitch chat to "free speech" with something along the lines of "People also have the right to kick you out, slam the door in your face and not listen to your 'free speech'". Not sure why I like this phrasing 😄

wet storm
#

I'll still have you

hasty grail
terse pelican
echo charm
rain widget
hasty grail
#

you can only do sooo much

#

if they cant read or understand then its on them to deal with the consequences

hasty grail
#

side note, found someone critiquing one of Thor's gamemaker arrays

rain widget
hasty grail
#

yes, there is a difference between normal coding and gamemaker coding and this is gamemaker coding

hasty grail
#

i love this drama.....

#

/s

jolly sky
echo charm
#

Are you ok?

hasty grail
jolly sky
#

Sometimes being specific is the only thing that works KEKW

hasty grail
#

in regards to all the spammers

echo charm
hasty grail
#

no i meant Thor said something similar to what Dan posted

echo charm
#

That better be sourdough

jolly sky
#

One that I saw in chat in response to someone saying "Jesus the modding here is so strict" was;

"Think of it as quality control that other places don't have"

hasty grail
#

or dont need

#

Brozime, a much smaller streamer who primarly plays Warframe, usually only has one or 2 mods active at a time and even then there are very few bans

#

Thor has thousands of viewers and DUE TO SKG and other drama, there is a constant need to ban the dimwits

echo charm
# hasty grail or dont need

Some spaces, who're wholeheartedly wholesome, perhaphs not, but the rest of the internet?

It could use a muzzle and a choker

echo charm
hasty grail
#

i think like 90% of the bans are first time comments

kindred sedge
#

Holy Heimdall be bulking

#

He was only at like 15 before I left for work

gray fable
#

Does he reset each day?

jolly sky
kindred sedge
#

Yea

jolly sky
#

But yes, he has still been eating well

echo charm
#

Heimdall?

gray fable
#

He’s given more bread than the mods

echo charm
#

Auto ban?

jolly sky
jolly sky
#

As he is the protector of the Bridge to the bifrost

wet storm
#

Fun fun fun in the autobahn

echo charm
#

He also likes to bully children, as seen in ragnarok

echo charm
jolly sky
#

Maybe they'll realise they have homework due on Monday

echo charm
muted robin
wispy plover
#

I’m not sure where people get this “free speech” thing, but the internet is not America.

idle hill
#

Mockery, Insults, Threats, and Profanity aren't protected free speech, even if it was America ThumbsUp

rain widget
muted robin
# jolly sky One that I saw in chat in response to someone saying "Jesus the modding here is ...

Honestly if a significant portion of the spammers are hardcore wow players it makes sense, blizzard has never given a damn about punishing player toxicity in any meaningful way so the wow community (mainly older ones) unironically thinks that things like asking not to be harrassed/stalked is pansy coward behavior and you should go back to carebears if you want GMs/mods/etc to penalize toxic players or whatever

wispy plover
#

Also, if they don’t like it, they can go start their own channel. I’m sure they’ll never ban anyone for talking trash and trolling. Surely.

fluid dome
#

Mfw a lot of this shitty people would be eaten alive in a 2012 cod lobby

muted robin
fluid dome
#

What if I just make my game insanely difficult for no reason >:3

muted robin
#

Especially when they're arguing about principles in the face of real life harm or mental health skdksncoskd like sorry but for many people looking like a winner in an online argument <<<<<<<< peace of mind and a non-toxic online space

earnest cove
#

people really reaching the point of hallucinating stories about thor eh

idle hill
#

I saw it in a dream, so it has to be real

wispy plover
#

I know with the WoW stuff, all their favorite LSF streamers come from a basically unmoderated environment where every other word out the streamers mouth is the R word, and they basically roll around in their own feces. In most NORMAL places, it isn’t like that.

opaque raven
#

I have a new conspiracy idea!!! 🔥
The whole drama was created and fueled from the very start to reach this point and make Thor's LinkedIn get more visualizations!! Boom!! It's all about job search

earnest cove
#

I hate it when people say 'i am just curious' when it's constant smug snide bashing

#

and then they cry victim when they get consequences

#

The way they write is intentionally provoking so that they can cry victim when they get bonked

rare dome
#

Yea I guarantee theres people baiting bans for content

opaque raven
#

"With all due respect" followed by the most disrespectful comment ever

earnest cove
#

the "hire a writer thing" had to be done in the very beginning

wispy plover
#

Yeah they know exactly what they are doing

ivory schooner
#

I had thought at one point of making a bingo card of things Thor says since people ask a lot of questions in the Q&A, and within multiple days there’s bound to be multiple of the same answer so I figured making a game out of it could be fun but then I realized it could be interpreted as rage bait so I held off (plus it would be too much trouble)

muted robin
#

Like an FAQ?

cyan canyon
#

people on lifestreamfails literally disconnected from reality. it should actually say: "I am surprised these guys manage to find ways to make him more unlikeable for themselves on a weekly basis" like cmon, are they really gonna watch all the footage that is available on him on the internet just to nitpick at every single possible thing where he wasnt perfect. like bro how obsessed can you be lmao

wispy plover
#

I thought about doing a whole video on the psychology of trolls when it comes to this stuff, but I’m not a psychologist. I’m just observant. And then if I do that, I feel like it just puts me in the same category of the people making Thor videos every day on YT as it is.

cyan canyon
wispy plover
#

Had thought about an FAQ in the same lines of thinking on it

#

Or like… frequently posted comments

#

And then dismantling them

tribal canyon
proper phoenix
cyan canyon
proper phoenix
kindred sedge
#

TWO DOLLARS

#

TWO DOLLARS!

#

ALL WE NEEDED WAS TWO MORE DOLLARS FOR A FUNNY NUMBER!

dusky grove
#

Actually, we needed 2 dollars less

tender jolt
minor nymph
tough wind
#

@minor nymph so you want to calculate explosion damage like minecraft does, right?

serene valley
#

thor should donate 2 dollars to a charity just so we get a funny number

tough wind
#

shouldn't be too hard if using minecraft's code as a guideline. Would be even easier, since you don't need it to be 3D

serene valley
#

then again.... 2 bucks could come across as a crappy thing to do

late bane
minor nymph
tough wind
#

minecraft does this

#

when you are behind cover the explosion does less damage according to how much behind you are

minor nymph
#

We're not using minecraft.
We're using custom logic for AOE spells.
I understand how this works and it will be implemented later.
This is not a high priority change.

tough wind
#

I wasn't saying to use in minecraft?

frosty spear
#

Thor, I'm guessing you might already know of this but, someone might be trying to do some bullshit, there is a post on lsf linking a youtube video making some allegation

tough wind
#

I said you could see how minecraft code does and use it as a guideline on how to do it

gentle mortar
#

"like" is the keyword

frosty spear
tough wind
frosty spear
#

I remember there being an article by the devs of rainbow six talking about how they do their explosions and they made it sound like industry standard

tough wind
#

normally you would take full damage if not on full cover

ionic sleet
brisk sparrow
#

great

frosty spear
#

It's none of my affairs to get involved in

tough wind
ionic sleet
#

You have to be pretty obsessed for thor to live rent free in your mind, even to go so far as to make your own website about it

cloud island
minor nymph
minor nymph
#

The internet is a flat circle.

serene valley
gentle mortar
#

is it the website guy?

ionic sleet
#

yea

brisk sparrow
#

i joined around the time that it was ending the first time. to see it come full circle is wild

serene valley
#

that just makes me go say all kinds of expletives

#

that would surely be filtered here

frosty spear
minor nymph
#

We got divorced because I didn't want to have kids.
Shit is private, people need to fuck off.

ionic sleet
#

I ignored relationship stuff but im pretty sure of thor was married now we would clearly know

minor nymph
#

Too many narratives around false shit.

ionic sleet
#

I also don't want demon spawns

dark kraken
#

fake news media

ionic sleet
#

anyway

serene valley
#

pretty sure kids are overrated anyway

dark kraken
#

imagine a baby thor

serene valley
#

I wouldn't want em either

dark kraken
minor nymph
ionic sleet
#

lol the earth is a wiffle ball, it fits with the iceworld conspiracy thor loves

cloud island
muted robin
brisk sparrow
#

god punkey is so good

ionic sleet
muted robin
#

And also said that it was over not wanting kids and that his ex is doing well and he's even still in touch with her family sometimes

#

So KEKW people are making up stuff about things that Thor has publicly talked about himself it's so funny

brisk sparrow
winter sierra
#

Oh i love that guy

winter sierra
#

Great animations

brisk sparrow
minor nymph
#

Listen to the voice.
Listen to the voices during CBCs DnD streams from before.

south patrol
minor nymph
#

I might be wrong but it's uncanny

serene valley
minor nymph
late pond
#

Why is the internet a flat circle?
Because today's 16-year-old drama consumers go sleuthing for more ammo, and find 5-year-old stuff that existed when they did not yet exist on the internet, believing they have found something that nobody in the whole world has ever seen before.
Their reasoning: "I have never seen this before, therefore nobody has ever seen this before."

golden mirage
#

Huh, I never knew Thor had been married; also, its his life and none of my business. He has a right to a personal life away from chat and twitch.

muted robin
brisk sparrow
#

any point in particular @minor nymph ?

muted robin
#

I don't get how/why people think Thor is "lying" about things he publicly posts and draws attention to himself but ppl are silly

tender jolt
#

Please no hotdog peeling. Mercy

brisk sparrow
#

like, timestamp if you remember one

#

or video

minor nymph
brisk sparrow
#

im trying to compare them myself

serene valley
tender jolt
brisk sparrow
#

luke humphris and CBC

serene valley
cloud island
#

i was looking for a meme to post about somthing, and for some reason, this gif feels amusing to post

cloud island
#

idk why, but it just feels really amusing finding that looking for somthing else

#

and i wanted to share

#

also golden girls will never not be funny

golden mirage
#

Golden girls was awesome.

cloud island
#

i sneezed and clicked that

#

pay it no mind

#

instantly "shit that is the WORST gif to accidentally post here"

brisk sparrow
minor nymph
tough wind
minor nymph
#

But hey, anything for content amirite?

brisk sparrow
#

no the carboard cowboy thing

#

not the other thing

minor nymph
serene valley
#

oh that's who CBC refers to KEKW

minor nymph
#

The Game Master here

dark kraken
#

ahaha what a funny guy

wary saffron
brisk sparrow
#

if its not the same person it is pretty eerie

jolly sky
serene valley
#

oh btw Thor did you get to watch delicious in dungeon yet, idk if you talked about that yet

serene valley
cloud island
#

is it bad @minor nymph that i keep picturing Heimdall doing this instead of a ban hammer now that i have seen it KEKW

late bane
serene valley
#

ah dangit automod KEKW

#

that's a normal word !!!

#

I just remember that on stream Thor said he wanted something like food fight (?) that wasn't as yknow and then chat just went "delicious in dungeon"

#

I can't say the word I wanted KEKW

cloud island
serene valley
#

uhhhh yea lets go with that

wary saffron
serene valley
#

this is how we get words like "unalive" people

urban venture
#

The internet is an infinite torture prison for the human soul and I just want to play my damn neopets! You know?

cloud island
# serene valley uhhhh yea lets go with that

i mean, i started watching Highschool DxD because i fell asleep watching somthing and it autoplayed into it, i woke up to Bare Booba on my screen and was so confused because i went from a NOT dirty anime into a rather dirty anime in like 3 hours of unplanned napping LOL

serene valley
#

bwahhahaha

ivory schooner
ionic sleet
urban venture
#

No soup

south patrol
ionic sleet
#

I have ultimately stopped watching anime in favor of just reading manga.

#

aside from binging a new overlord season and one piece

cloud island
ionic sleet
#

I think the ban counter needs to be color coded based on who bans

cloud island
wanton stump
#

The manga is a 10/10

cloud island
ionic sleet
#

well i stopped in the big mom arc but do agree parts drag on

wanton stump
#

Binging One Piece the pacing is great

hasty grail
opaque raven
#

Stream question
Do we have any commands on twitch to see which hearthbound music is playing at the moment?
Not sure how hard it would be to implement but it could be cool
Or even a small message on screen (if it's not too much visual pollution)

late bane
hasty grail
#

10 quck bans covers a quarter of the screen

wary saffron
hasty grail
#

hehehehe

jolly sky
#

The counter should have a combo meter if multiple happen at the same time KEKW

ionic sleet
#

yea i have just stopped watching general anime entirely since five years now. It has really opened up to me since not every great series gets its own anime. reading like 200 series currently

Also thor should read Tomb Raider King

tight bramble
wispy plover
#

I can hear that image

jolly sky
wary saffron
ionic sleet
jolly sky
late bane
#

Anybody know how to change Youtube chat so it only shows Youtube Handles and not Display Name like the chat was today?

#

I assume its a setting in Youtube Studio

cloud island
#

^the mods today

#

they had to dual wield the ban hammer today

jolly sky
#

Mods on almost every stream recently;

cloud island
#

i feel like @minor nymph would appreciate that gif

#

i went into depths of my Gif folder i forgot existed and found that LOL

#

i say "Gif Folder" but i mean the favorites tab of the Discord Gif browser LUL

late bane
#

I just got done watching Full Metal Alchemist

tight bramble
late bane
tight bramble
late bane
jolly sky
late bane
jolly sky
#

I have one more to add to that

#

You'll never get it Goblins

tight bramble
late bane
tight bramble
#

I have a lot of "dbz phone meme"

tight bramble
jolly sky
#

One old image that always gets me

jolly sky
#

I have more questions every time I see it

late bane
golden latch
jolly sky
#

Nope

late bane
jolly sky
tight bramble
#

Like....more than a few lol

serene valley
#

(savage)

jolly sky
#

This is an image that everyone on the Internet should see

late bane
jolly sky
cloud island
distant rapids
#

goblin enrichment

jolly sky
tight bramble
# jolly sky

When you stare into the abyss, the abyss stares back

tight bramble
jolly sky
jolly sky
late bane
#

I have no idea why I have this saved KEKW

jolly sky
tribal canyon
#

uh what have i missed?

late bane
#

Okay chat so here me out

tight bramble
tight bramble
jolly sky
cloud island
tight bramble
tight bramble
jolly sky
cloud island
golden latch
#

!script wonder why

dapper ravenBOT
#

Hello, my name is thor, i've been in the gaming industry for 20 years. I used to make games at blizzard, then at Amazon Games Studio, then hacked power plants for the D.O.E, I was a pen tester. Now I own my own studio called PirateSoftware and I stream here on twitch.

golden latch
#

Almost like he was reading a script for new people who wanted to know about him Goblins

tight bramble
#

Eh?

jolly sky
#

Boy I sure love out of context clips being woven into a narrative

#

really love that

golden latch
#

Anammeg posted a “i worked at blizzard” meme as some form of gotcha

late bane
tight bramble
distant rapids
#

while the video is funny in a meme way, like, everytime that he mentions he worked as blizzard is because someone asked him where he worked KEKW its illegal for a mans to answer questions

golden latch
midnight shale
#

Success breeds jealousy, what can you say

tight bramble
golden latch
tight bramble
untold nimbus
golden latch
golden latch
#

!wallpaper We have lots of commands such as this one for cool images

dapper ravenBOT
cloud island
wet storm
#

Me when I forget my fire water

cloud island
#

i had a meme, but i think it got blocked cause the link for it had the F word

#

i also need to go to bed i Seepy

golden latch
wet storm
#

ur meme ^

cloud island
# wet storm Oh noes

the server owner can apparently see what i posted, it will probrably amuse Thor, it was the Starwars "behold the field where i grow my Fs, thou shalt see it is barren"

jolly sky
cloud island
wet storm
#

I spent quite some time in the UK and I got the best story

jolly sky
#

Mr Blobby was....

wet storm
#

Speaking of slurs

jolly sky
#

Well it was something

serene valley
jolly sky
wet storm
#

I used to work in the service industry in the UK and during a break shortly after lunch a co-worker asks
"Ayo Ricky wanna pop out and smoke a f||nya||?"

#

I learned English from an American perspective

#

My first thought was "My friend that is two crimes"

#

(the bleeped word means cigarette in the UK)

late bane
#

it's just apart of our slang

cloud island
late bane
wet storm
#

Yeah my brain went to "Why does my co worker want to commit a hate crime?

#

I was shocked and appaled

late bane
#

but anyways

muted robin
#

Nooo

cloud island
subtle gate
#

reminder that mosquitos target potassium

#

I found out Gatorade has potassium in it as well

late bane
cloud island
#

i found that earlier when he first put the banana pic as his thumbnail and saved it for the proper moment

late bane
#

I think my dog is speakig in morse code by sneezing at me.

muted robin
golden latch
wet storm
wet storm
#

C word tossed like a compliment

cloud island
#

i need to go take a nap, but i keep getting distracted by MEMES

vivid maple
golden latch
late bane
vivid maple
cloud island
late bane
cloud island
#

i need to go nap and i keep memeing instead

#

Nauuur

#

farewell, im going to nap now before i see another meme

#

im minimizing discord

reef geyser
untold nimbus
late bane
high canyon
#

I am 100 percent a weirdo

wispy plover
#

quality memes posted while I was gone lol

subtle gate
#

@minor nymph how old is Emperor's New Groove?

#

if Shrek is 23

serene valley
#

25

onyx gate
#

out of curiousity, where did the joke "This is clearly not a cult." come from?

distant rapids
#

I actually don't know, tho.

late bane
#

Jon Ross and Andy Kidd, engineers and artists from the UK, have developed a system that lets mushrooms and plants play music through bionic arms.

John, the visionary behind Bionic and the Wires, combines art, technology, and environmental thinking to create custom bionic arms that enable plants and fungi to produce music and visual art, challen...

▶ Play video
#

Ah the video that guy and Thor were talking about

frosty spear
#

Ok funniest shit I've seen in the programming humor subreddit people are basing Thor for using "magic numbers" for array index and state value instead of "meaningful" indexes like enums

#

Sure enums can prevent you from doing some errors because the compiler will curse at you but they are just ints

tribal canyon
#

Looking at posts history of everyone posting Thor memes there just shows all of them have never actually interacted with programming humour prior

#

Just chancers looking for an audience

frosty spear
#

Who knows and who cares they are outing themselves

#

But the "magic number line" amused me

tribal canyon
#

Yea, for me it just shows we are probably at the final stage as people are desperate to revive the drama as the original people are moving on to other stuff

#

Throwing spaghetti drama at the wall and seeing what sticks

frosty spear
#

People on r/youtube were talking about that channel that has done like 12+ videos saying it's over for thor and even they were saying that he was making glue at this point

vivid maple
#

are we talking about morepegasus

hasty grail
#

someone made a mashup of Thor mentioning all the times he says he worked a blizzard as a heads up to people

tribal canyon
tribal canyon
indigo wadi
#

Anyways, anything nutty happen today?

hasty grail
#

i have no idea how to summarize earlier

tribal canyon
#

Like 450 bans as people have now decided Thor is the worst programmer ever

#

And it's the weekend

tribal canyon
#

Oh and as part of that reddit is trying to justify making fun of ferret cancer

red halo
#

I find it kinda annoying and funny how the comments on the game dev stream are like "12 hours of looking at config files and doing nothing" when it's literally the dev asking it's players om balancing it. Like if I knew how to do config files before I would've done it cause holy hell does it take so much time when you have to restart something just to test out the effect

tribal canyon
jolly sky
indigo wadi
jolly sky
#

It's a novel concept for some these "weak in the upper story" redditors

red halo
#

Hmm I triggered automod and idk what triggered it

hasty grail
red halo
#

Is it java?

#

No not java lmao

#

I'm too lazy to check every word I give up KEKW

#

I just talked about how I wasted a whole lot of time because hot reload didn't apply the changes in my app KEKW

muted robin
#

personally i'm trying to figure out why i keep seeing ppl saying thor is suing someone. like is this misinterpreting someone out of context kind of drama or "my source is i made it the f up" kind of drama

tribal canyon
#

Just people making stuff up

hasty grail
#

someone was going to "sue" thor

river cargo
#

its based off the wow hc stuff

hasty grail
#

but given who it was, dont expect anything

river cargo
#

some dude said thor dmca'd him

#

other content creators came to his defense

hasty grail
#

the DMCA thing is slightly more complicated

muted robin
river cargo
#

at the end the dude provided no proof

muted robin
#

ah, so source: i made it the f up

hasty grail
#

which was a "used Thor's likeness in some way in a clip but not actual update" weirdness

glass horizon
#

wasn't that the guy who used AI to replicate Thor's voice for some video or something?

jolly sky
#

Sone sad act was working on a harassment game that included Thors voice in it, and was streaming himself making it

hasty grail
#

was it ai? no idea

river cargo
#

no it wasnt ai it was his stream

hasty grail
#

either way, that was a stupid one

muted robin
#

oh so that's where the "he's suing a smol innocent indie dev" came from?

river cargo
#

yeah

muted robin
river cargo
#

the dev said steam delisted his game, but provided no proof

jolly sky
#

And the developer knew it

muted robin
#

i am once again wondering how these same people would feel if someone else used their name/likeness/voice in a game that they were planning to make money off of without their consent skdlfjlskd

hasty grail
#

if Thor doesnt act, it looks worse for him
if Thor does act, its ammunition

jolly sky
#

If he didn't then, woo boy he was dumb

hasty grail
#

catch 22 for Thor

#

which sucks that he has to go through this

muted robin
#

and also wondering why it is that people don't realize that just bc you can get away with stealing IP/likenesses/etc because most large companies do not care if some random person uploads stuff, doesn't mean that it's not still illegal and they can't be sued over it regardless

river cargo
#

tbf that dev never stated it was in the game

jolly sky
#

And now its being brought up yet again

river cargo
#

but then again, i dont think thor went through with the claim anyways

#

after learning about it

late bane
#

Another thing go down?

river cargo
#

so it's a whole nothingburger that sloptubers blew out of proportion

hasty grail
#

for the love of everything holy, saucy, and unholy, move on from Thor, you are getting nothing that you want out of this
(me to these people)

jolly sky
#

He did not, no

indigo wadi
#

What is it about 2025 that's unleashed the insanity?

jolly sky
muted robin
#

That Crowd Of People sure loves demonstrating how much they love and feel entitled to using other people's property huh

indigo wadi
#

Out of the internet years, this has been the worst

jolly sky
river cargo
#

its basically an incident where the 2 parties agreed to nothing, but the bystanders yelled and blew it up

muted robin
#

but i'm also looking through chat logs trying to see if someone else has already summarized it/if thor has said anything about it so i don't need to keep asking

river cargo
#

there was a response in the comments of his anything for content video

hasty grail
#

thats as best of a summary as you can get right now

indigo wadi
hasty grail
#

personally, lets move on

golden mirage
#

That he never stated it is in the game doesn't get him any good will. He knowingly and intentionally made it clear his intention was to put it in the game or come close enough to do so that it would require action to be taken by Thor.

late bane
tribal canyon
#

Bread TTS time

ionic sleet
#

that dmca game thing was actually a legit thing. that guys video alone showcased thor's voice which would lead people to believe it would be in the game. So a proper DMCA notice is standard.

People just believe there is no consequences anymore

jolly sky
late bane
#

I think i got something on par with the mother egg one I did so we'll see

ionic sleet
#

yea i think we need a FAQ now

late bane
ionic sleet
#

and label it "Official Unofficial FAQ"

tribal canyon
#

There's the FAQ video

hasty grail
#

"drama points and actions taken thus far: part 1/5745"

#

make a different channel with no one other than mods or thor to post within in, have all the points there

jolly sky
hasty grail
#

anyways

#

how are people doing?

late bane
#

Faq should link to Thor's onlyfans

jolly sky
#

Yes lets move right on along

tribal canyon
#

1am so comfy in bed, hopefully heat wave breaks in the morning

hasty grail
#

Thor's spidy sense might be tingling

#

just started to rain for me

late bane
#

Hope not, I hope hes resting

indigo wadi
tribal canyon
#

It's like 5PM his time so likely awqke

indigo wadi
#

And working

late bane
#

Inb4 yet another 24h day

indigo wadi
#

19 hours, 5 hour skeep

late bane
#

Yeah but you know him

indigo wadi
#

He usually needs good reason to stay up 24 hours

late bane
#

Also i need a lore expert, what's Shaye's did i spell that right? favorite candy? I wana do a po box thing

golden mirage
#

No idea but you might want to hold off on sending any food related items for a few months. Heat in the PNW are in the 90s which means possibly over 100 in the vans and warehouses.

late bane
#

Probably, but hes just getting black licorice coins so hopefully they keep

river cargo
winter sierra
#

not wrong

late bane
#

Dead as fried chicken 🍗

idle hill
#

Teacher: "You were supposed to make a theoretical estimate, not a realistic one."
Flunks quiz

indigo wadi
#

Just because it's a "notice", doesn't detract from it being an actual dmca filing

lapis tartan
exotic forge
dusky grove
#

Theres an alternate universe where thor was named zeus and everything was named after greek things not norse things

patent bear
junior torrent
#

Like something in that vein

muted robin
spring rover
#

hey excuse me everyone! i like this streamer and i dont use discord can someone please explain the pregnant emoji thank you (⁠◕⁠ᴗ⁠◕⁠✿⁠)

dusky grove
spring rover
dusky grove
#

Yes

spring rover
#

tyyyy

#

so many people! (⁠;⁠ŏ⁠﹏⁠ŏ⁠)

#

and english is my second language

#

but I can read

dusky grove
#

Don't worry about it. You're doing great

spring rover
#

is this ok? i made one account for this server because my other is only japanese

#

I want to learn

spring rover
dusky grove
#

Yeah. Though go to #general_chat

This chat is for topics related to the stream, usually

spring rover
#

I will! you're helpful

frosty socket
#

Apparently

hasty grail
#

booooo

#

thats a stupid joke and everyone knows it

muted robin
#

i don't think pregnant man reaction emoji is a meme specific to this server

#

i've seen it all over the internet

subtle gate
patent bear
spring rover
#

like a meme?

patent bear
patent bear
blissful imp
#

some absolutely normal people

#

Also there's a new LSF post on reddit

earnest spire
#

meh

ocean agate
#

LSF is just toxic, not sure why you keep posting that stuff here

winged knoll
azure glen
blissful imp
candid wraith
#

What’s the 4chan stuff people keep mentioning in regards to Thor?

muted robin
#

Idk just them being in the toxic circlejerk like everyone else? Someone tried to post that he committed suicide a few days ago

dry osprey
#

People do it for what? Attention? Sorry im not wasting my precious lifetime for it

toxic rampart