03:13 < ddnet-commits> [ddnet] Piepow opened pull request #1171: Fix pain emote immunity with jetpack (master...master) https://git.io/f4QkP 12:53 < ddnet-commits> [ddnet] bors[bot] merged staging into master: https://git.io/f4QPs 14:38 <+bridge> [ddnet] bugreport: when u are muted, u cant type /lock 14:38 <+bridge> [ddnet] @Dev 15:00 <+bridge> [ddnet] haha 15:00 <+bridge> [ddnet] not sure if we should change that 18:17 <+bridge> [ddnet] whats a velocity ramp 18:47 <+bridge> [ddnet] is veto shit now? wasn't it supposed to work only after a specific race timer? 19:36 <+bridge> [ddnet] @ReiTW | Blizzard you get veto for being on the server or racing over 20 mins 19:37 <+bridge> [ddnet] unless ur afk 19:38 <+bridge> [ddnet] @heinrich5991 how to get dev role 19:39 <+bridge> [ddnet] That was completlly shit to see that we were 6 to vote a map and got a veto cuz a random at spawn pressed f4 19:39 <+bridge> [ddnet] He wasn't even in race 19:39 <+bridge> [ddnet] <|UroboroS| Rockus.~> ye and it was shit when i was about toget a good time on a dummy map and two guys voted a map 19:39 <+bridge> [ddnet] <|UroboroS| Rockus.~> and then told me to cry more 19:40 <+bridge> [ddnet] @|UroboroS| Rockus.~ i guess wait on a server 20 mins before trying your speedrun :D 19:41 <+bridge> [ddnet] @ZombieToad sso how do you explain the fzct that this guy was at sspawn with veto 19:41 <+bridge> [ddnet] he was on the server for over 20mins 19:42 <+bridge> [ddnet] No 19:42 <+bridge> [ddnet] My friend eikou joined an empty srv 19:42 <+bridge> [ddnet] We were tthere for 5mins then we left cuz of that shitty veto 19:42 <+bridge> [ddnet] sometimes i had veto just after i joined to a server 19:42 <+bridge> [ddnet] @ReiTW | Blizzard when was this? 19:42 <+bridge> [ddnet] 1 hour before 19:42 <+bridge> [ddnet] on ddnets servers? 19:42 <+bridge> [ddnet] When i wrote my msg at the top 19:43 <+bridge> [ddnet] Sure 19:43 <+bridge> [ddnet] A ger srv 19:44 <+bridge> [ddnet] @Jesus Christ this was a bug but i fixed it 11days ago 19:44 <+bridge> [ddnet] https://github.com/ddnet/ddnet/pull/1151 19:44 <+bridge> [ddnet] why arent u dev yet 19:44 <+bridge> [ddnet] idk 19:45 <+bridge> [ddnet] im trying to fix the bug where you can get weapons that make the pain noise 19:45 <+bridge> [ddnet] here u are 19:47 <+bridge> [ddnet] ``` 19:47 <+bridge> [ddnet] int value = 10; 19:47 <+bridge> [ddnet] printf("%d", value); 19:47 <+bridge> [ddnet] ``` 19:47 <+bridge> [ddnet] 19:47 <+bridge> [ddnet] so that works and also 19:47 <+bridge> [ddnet] 19:47 <+bridge> [ddnet] ``` 19:47 <+bridge> [ddnet] printf("hello"); 19:47 <+bridge> [ddnet] ``` 19:48 <+bridge> [ddnet] 19:48 <+bridge> [ddnet] that works but this doesnt: 19:48 <+bridge> [ddnet] 19:48 <+bridge> [ddnet] ``` 19:48 <+bridge> [ddnet] #include 19:48 <+bridge> [ddnet] #include 19:48 <+bridge> [ddnet] std::string hi = "hi"; 19:48 <+bridge> [ddnet] printf(hi); 19:48 <+bridge> [ddnet] ``` 19:48 <+bridge> [ddnet] why? 19:48 <+bridge> [ddnet] whats the text in the quotes that work saved in then 19:48 <+bridge> [ddnet] or what do i have to do to make it work 19:48 <+bridge> [ddnet] @Learath2 xddd 19:49 <+bridge> [ddnet] and with chars it also doesnt work 19:52 <+bridge> [ddnet] Veto was alwayz broken :/ 19:52 <+bridge> [ddnet] learath help me 19:52 <+bridge> [ddnet] xd 19:52 <+bridge> [ddnet] Printf doesnt print std::strings 19:53 <+bridge> [ddnet] char arrays? 19:53 <+bridge> [ddnet] std::cout would print strings 19:53 <+bridge> [ddnet] Or you can pass the char array in the string 19:54 <+bridge> [ddnet] char arrays are hard to write xd 19:54 <+bridge> [ddnet] takes for ever 19:54 <+bridge> [ddnet] printf 19:54 <+bridge> [ddnet] int printf ( const char * format, ... ); 19:54 <+bridge> [ddnet] Not any harder then a string 19:54 <+bridge> [ddnet] if you use std::string you can use method c_str() 19:54 <+bridge> [ddnet] it will convert to const char 19:54 <+bridge> [ddnet] ty 19:54 <+bridge> [ddnet] cuz i need that shit for 19:54 <+bridge> [ddnet] str_format(aBuf, sizeof(aBuf), "%s", CheckTile(m_pClient->m_Teams.tileLeft)); 19:54 <+bridge> [ddnet] xd 19:55 <+bridge> [ddnet] i also tried with %s but it didnt work :/ 19:55 <+bridge> [ddnet] now easy ur way 19:55 <+bridge> [ddnet] `char str[] = "Hi"; std::string str2 = "Hi";` 19:55 <+bridge> [ddnet] We dont use strings in teeworlds code btw 19:55 <+bridge> [ddnet] char str[] = "Hi"; 19:55 <+bridge> [ddnet] 19:55 <+bridge> [ddnet] i did that but it said the char is too long 19:55 <+bridge> [ddnet] ik why 19:56 <+bridge> [ddnet] i did char str[128] = "hi"; 19:56 <+bridge> [ddnet] xddd 19:56 <+bridge> [ddnet] oops 19:56 <+bridge> [ddnet] ok nvm 19:56 <+bridge> [ddnet] ty 19:56 <+bridge> [ddnet] best ddoser 19:56 <+bridge> [ddnet] That only creates a char array big enough to fit btw 19:57 <+bridge> [ddnet] @Ryozuki doubt he'll code anything malicious until he learns how to use arrays :P 19:57 <+bridge> [ddnet] yeah 19:57 <+bridge> [ddnet] that was what i meant 19:57 <+bridge> [ddnet] he is a script kiddie 19:58 <+bridge> [ddnet] no retard 19:59 <+bridge> [ddnet] i never even ddosed ddnet xd 19:59 <+bridge> [ddnet] i never even ddosed at all or had any scripts in the first place 20:00 <+bridge> [ddnet] all of u guys where just too retarded to notice or smth 20:00 <+bridge> [ddnet] Is that your official statement? 20:00 <+bridge> [ddnet] even if u didnt, u used to brag a lot about it 20:00 <+bridge> [ddnet] xd 20:00 <+bridge> [ddnet] it is my official statement 20:01 <+bridge> [ddnet] after i got fukin reported to the police i guess i have to tell the truth at some point 20:01 <+bridge> [ddnet] since u guys actually thought i fukin pro ddosed ddnet 20:01 <+bridge> [ddnet] and like a month before that 20:01 <+bridge> [ddnet] i asked how to compile ddnet 20:01 <+bridge> [ddnet] like a retard that cant figure out by himself how to compile ddnet could ddos ddnet so that everyone lags af 20:01 <+bridge> [ddnet] Protip: Don't brag for other peoples crimes 20:02 <+bridge> [ddnet] Actually, you don't need to know how to compile stuff 20:02 <+bridge> [ddnet] i wouldnt need to know ur right xd 20:02 <+bridge> [ddnet] you can actually hire the service 20:02 <+bridge> [ddnet] there's a lot of capabilities to buy such things 20:02 <+bridge> [ddnet] for "testing purposes" :thonkery: 20:02 <+bridge> [ddnet] but the chances pretty low that i wouldnt if i could do that 20:02 <+bridge> [ddnet] Yeah you just need to find a weird russian site that offers botnets for hire 20:03 <+bridge> [ddnet] heh? 20:03 <+bridge> [ddnet] i mean 20:03 <+bridge> [ddnet] paying for ddos 20:03 <+bridge> [ddnet] is even more sad than bragging 20:03 <+bridge> [ddnet] It's not 20:03 <+bridge> [ddnet] Everyone pays for ddos 20:03 <+bridge> [ddnet] @Learath2 you don't need any botnets when you talk about tw 20:03 <+bridge> [ddnet] reitw comes here to save the day 20:03 <+bridge> [ddnet] ddosing in the first place 20:03 <+bridge> [ddnet] is sad 20:03 <+bridge> [ddnet] xd 20:03 <+bridge> [ddnet] unless u do it for good purposes 20:03 <+bridge> [ddnet] @ezy glad you think that way now, cuz in the old times you looked like a scumbag 20:03 <+bridge> [ddnet] its easier to pay for ddos. I don't hink, that everyone can infect right amount of PC's 20:03 <+bridge> [ddnet] @ReiTW | Blizzard Team it's only a DOS if you dont employ spoofing or a botnet 20:03 <+bridge> [ddnet] to use their networks 20:04 <+bridge> [ddnet] nah i was just having my fun trolling until i got reported to the police xd 20:04 <+bridge> [ddnet] @Learath2 wtf? 20:04 <+bridge> [ddnet] @Learath2 did you take some drugs? 20:04 <+bridge> [ddnet] @ReiTW | Blizzard just read about stuff 20:04 <+bridge> [ddnet] Have you ever checked what the first d in ddos stands for? :D 20:04 <+bridge> [ddnet] reitw has a master in networking, u didnt know @Savander ? 20:04 <+bridge> [ddnet] @Learath2 when you talk about DoS you simply talk about a single machine, attacking a target, using spoof or not 20:04 <+bridge> [ddnet] DoS = Denial of Service vs DDoS = Distributed Denial of Service 20:04 <+bridge> [ddnet] see the difference? 20:05 <+bridge> [ddnet] By spoofing you can create a reflection attack which is infact distributed 20:05 <+bridge> [ddnet] :banhammer: 20:05 <+bridge> [ddnet] i thought more than one dos is already is already a ddos 20:06 <+bridge> [ddnet] @Learath2 but (imagine you're doing it) you were there to make that reflection or you're only targetting the server 20:06 <+bridge> [ddnet] @Learath2 and whatever, if you spoof you don't have enough packets to drop the guy that got a response from the server that received the spoofed packet 20:06 <+bridge> [ddnet] remember, that's random (or a list) 20:07 <+bridge> [ddnet] What? 20:07 <+bridge> [ddnet] WAT 20:07 <+bridge> [ddnet] HAAA 20:07 <+bridge> [ddnet] I have to use paint wait for u 20:08 <+bridge> [ddnet] You spoof the target ip and ask for huge responses from a thousand servers, servers respond to your target thus DOSing it 20:08 <+bridge> [ddnet] As there are many servers DOSing its a ddos 20:08 <+bridge> [ddnet] @Learath2 when ddnet is getting ddosed 20:08 <+bridge> [ddnet] do you really think it comes from only 1 spoofed IP? 20:08 <+bridge> [ddnet] or a random one 20:08 <+bridge> [ddnet] We get many different kinds of it 20:09 <+bridge> [ddnet] sure, because that's random 20:09 <+bridge> [ddnet] sure to make a reflection you won't make it random 20:09 <+bridge> [ddnet] but only spoofing 1 ip can create a ddos right? 20:09 <+bridge> [ddnet] We get spoofed SYN floods from obe ip sometime 20:10 <+bridge> [ddnet] obe? 20:10 <+bridge> [ddnet] One 20:10 <+bridge> [ddnet] o_be_one? xD 20:10 <+bridge> [ddnet] how come every time i chat with someone and rei joins it ends up in a discussion 20:11 <+bridge> [ddnet] @Learath2 wat dafk 20:12 <+Learath2> we also get distributed SYN floods where they spoof our IP and SYN other servers, and the other servers send the SYN+ACK to us 20:12 <+Learath2> serverinfo reflections were also popular for a while 20:14 <+bridge> [ddnet] well, for you that's a ddos 20:14 <+bridge> [ddnet] for me it stays a dos 20:15 <+Learath2> whether you like it or not reflection attacks are defined as ddos 20:16 <+Learath2> DRDOS, Distributed Reflection Denial of Service 20:17 <+bridge> [ddnet] for a lot of people no 20:17 <+Learath2> I don't get how you can argue against a definition 20:17 <+bridge> [ddnet] because a ddos is also defined as multiple hosts sending a big amount of packets, and when I talk about hosts, that's infected or all attacker's machines 20:18 <+bridge> [ddnet] as far as I know 20:18 <+bridge> [ddnet] ddnet servers aren't infected by an attacker 20:18 <+bridge> [ddnet] the target isn't infected 🤦 20:18 <+bridge> [ddnet] not the target .-. 20:18 <+bridge> [ddnet] ddnet servers are the target 20:19 <+bridge> [ddnet] nah, I'm talking about the reflection attack to another server 20:19 <+bridge> [ddnet] hosts don't need to be infected for it to be a ddos 20:19 <+bridge> [ddnet] and you know what I mean 20:19 <+bridge> [ddnet] there just needs to be multiple hosts 20:19 <+bridge> [ddnet] I talked to you about that 20:19 <+bridge> [ddnet] It's a very simple concept 20:20 <+bridge> [ddnet] 1 host attacking it's a DOS, >1 host attacking it's a DDOS 20:20 <+bridge> [ddnet] @Learath2 when someone is spoofing the IP of a guy & send a lot of gie3 requests to all ddnet servers for example 20:20 <+bridge> [ddnet] your servers will act normally 20:20 <+bridge> [ddnet] computer science doesn't care about who is to blame or the intent of the attacker 20:21 <+bridge> [ddnet] from the targets perspective, multiple hosts are sending him huge packets 20:21 <+bridge> [ddnet] its a ddos 20:21 <+bridge> [ddnet] still not for me ^^ 20:21 <+bridge> [ddnet] SELAM ALEYKUM LEARATH 20:21 <+bridge> [ddnet] good old days 20:21 <+bridge> [ddnet] you can't just get to ignore definitions 20:21 <+bridge> [ddnet] ;D 20:21 <+bridge> [ddnet] You have strong argument? NOPE, not for me 20:21 <+bridge> [ddnet] Gravity does not apply to me 20:21 <+bridge> [ddnet] I can fly 20:21 <+bridge> [ddnet] tune gravity 0 20:22 <+bridge> [ddnet] @Learath2 don't listen to newton 20:22 <+bridge> [ddnet] What about planes? 20:22 <+bridge> [ddnet] they don't exist for me 20:22 <+bridge> [ddnet] @Savander they swim in the air 20:22 <+bridge> [ddnet] how dare you 20:22 <+bridge> [ddnet] flat is earth @Learath2 20:22 <+bridge> [ddnet] earth is flat 20:23 <+bridge> [ddnet] wtf 20:23 <+bridge> [ddnet] im on drugs? 20:23 <+bridge> [ddnet] as long as I keep denying it maybe it'll work out 20:23 <+bridge> [ddnet] I'll try jumping off brb 20:24 <+bridge> [ddnet] Definitely it will work. Since a lie repeated a thousand times becomes the truth 20:25 <+bridge> [ddnet] @Learath2 whatever, your definition of a reflexion is true yea, but i won't change ^^ 20:25 <+bridge> [ddnet] sadly I'm like that, O: 20:26 <+bridge> [ddnet] So, now i know i shouldn't listen to you 😄 20:26 <+bridge> [ddnet] I prefer facts, instead of opinions 20:28 <+bridge> [ddnet] i fix this bug 20:28 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/461236206131478538/PainWeaponBug.gif 20:29 <+bridge> [ddnet] that you keep holding weapon ? 20:29 <+bridge> [ddnet] it will make pain noise 20:30 <+bridge> [ddnet] and has no ammo 20:30 <+bridge> [ddnet] it wasn't only client side ? 20:30 <+bridge> [ddnet] nop 20:30 <+bridge> [ddnet] @ReiTW | Blizzard i dont understand u xd 20:30 <+bridge> [ddnet] @ezy heh? 20:30 <+bridge> [ddnet] ur logic sometimes 20:31 <+bridge> [ddnet] why, I'm only looking at an other side 20:31 <+bridge> [ddnet] than them 20:31 <+bridge> [ddnet] but why are u arguing against an official definition 20:32 <+bridge> [ddnet] cuz he looked at wikipedia 20:32 <+bridge> [ddnet] and wikipedia = cancer 20:32 <+bridge> [ddnet] i c 20:32 <+bridge> [ddnet] nah seriously, even if ik he's right, I won't apply that definition 20:32 <+bridge> [ddnet] that's all 20:32 <+bridge> [ddnet] wikipedia always 100% wrong 20:32 <+bridge> [ddnet] :/ 20:33 <+bridge> [ddnet] what makes u disagree with a right definition tho just because its from wikipedia 20:33 <+bridge> [ddnet] xd 20:34 <+bridge> [ddnet] cuz it sucks 20:34 <+bridge> [ddnet] he's super nonconformist 20:34 <+bridge> [ddnet] it kinda makes it pointless to discuss with you if you don't agree with official definitions 20:34 <+bridge> [ddnet] @ezy u know 20:34 <+bridge> [ddnet] 😄 20:34 <+bridge> [ddnet] thats like saying apples arent fruits cuz u dont like them xd 20:34 <+bridge> [ddnet] I'm like a vegan who's against the definition that meat is gud 20:35 <+bridge> [ddnet] @ezy that's how EU works 20:35 <+bridge> [ddnet] lol 20:35 <+bridge> [ddnet] ye 20:35 <+bridge> [ddnet] no 20:35 <+bridge> [ddnet] the definition that meat is gud 😄 20:35 <+bridge> [ddnet] thats how france works 20:35 <+bridge> [ddnet] YE IT'S A DEFINITIOn 20:35 <+bridge> [ddnet] @ezy nu 20:35 <+bridge> [ddnet] vegan are not vegans, because they don't like meat 20:35 <+bridge> [ddnet] lol 20:35 <+bridge> [ddnet] vegans are not vegans, because they don't like meat 20:36 <+bridge> [ddnet] @ZombieToad that was a funny bug 😦 20:36 <+bridge> [ddnet] snail is a vegan 20:36 <+bridge> [ddnet] but i must fix all the bugs 20:36 <+bridge> [ddnet] @Savander u don't know, there is some differents type of vegan 20:36 <+bridge> [ddnet] or "race" 20:36 <+bridge> [ddnet] @ZombieToad is that ur destiny 20:36 <+bridge> [ddnet] yes 20:36 <+bridge> [ddnet] :GWfroggyMonkaThink: 20:36 <+bridge> [ddnet] How many bug left? 20:36 <+bridge> [ddnet] Wanna counter?:D 20:36 <+bridge> [ddnet] vegans, the new "race" 20:36 <+bridge> [ddnet] vegans are just the people who dont eat any animal products 20:36 <+bridge> [ddnet] making ddnet bug free since 2014 20:36 <+bridge> [ddnet] thats the only type 20:36 <+bridge> [ddnet] xd 20:36 <+bridge> [ddnet] @ZombieToad why don't u fix all by adding return 0; after the int main line 20:37 <+bridge> [ddnet] @jao add vegan flag to client 20:37 <+bridge> [ddnet] and gaypride flag 20:37 <+bridge> [ddnet] yes please 20:37 <+bridge> [ddnet] 🏳️‍🌈 20:37 <+bridge> [ddnet] wrong flag :/ 20:37 <+bridge> [ddnet] its rly dumb tho that he literally explained the definition of a ddos after u contradicted him and ur like "well whatever i dont care 🤷" lol 20:37 <+bridge> [ddnet] at least admit u were wrong 20:37 <+bridge> [ddnet] one time someone send me nazi flag on discord and my dad walked in and he was mad at me 20:37 <+bridge> [ddnet] xd 20:38 <+bridge> [ddnet] nah snail 20:38 <+bridge> [ddnet] rei is right 20:39 <+bridge> [ddnet] U german ezy? 20:40 <+bridge> [ddnet] @snail sorry 4 french but jé pa comprendu ta phrase 20:41 <+bridge> [ddnet] beh il texplique la definition du ddos apres que tu lui dise qu'il a tort, il te montre que ce qu'il dit c'est vrai et tu réponds "balek cest pas ma definition" alors que la moindre des chose c dadmettre que meme si tes pas daccord avec la definition officielle bah il tavais tort sur le truc xd 20:41 <+bridge> [ddnet] beh il texplique la definition du ddos apres que tu lui dise qu'il a tort, il te montre que ce qu'il dit c'est vrai et tu réponds "balek cest pas ma definition" alors que la moindre des chose c dadmettre que meme si tes pas daccord avec la definition officielle bah tavais tort sur le truc xd 20:41 <+bridge> [ddnet] ye 20:41 <+bridge> [ddnet] mais mec je lui dit que je sais qu'il a raison, mais je me baserais tjr sur la mienne 20:41 <+bridge> [ddnet] just add him to your list of "dont care people", and you will be fine. He prefer to have opinion, instead of facts. Let give him his rights ! 20:42 <+bridge> [ddnet] lui il voit la chose du coté de la cible, moi je vois la chose du coté de l'attaquant, c'tout, back to englishg 20:42 <+bridge> [ddnet] lui il voit la chose du coté de la cible, moi je vois la chose du coté de l'attaquant, c'tout, back to english 20:42 <+bridge> [ddnet] 😄 20:42 <+bridge> [ddnet] English only 20:42 <+bridge> [ddnet] arent u from uruguay or smth ryuzuki xd 20:42 <+bridge> [ddnet] @heinrich5991 ban snail 20:42 <+bridge> [ddnet] Catalonia !? 20:42 <+bridge> [ddnet] Enforce the rule 20:42 <+bridge> [ddnet] I wrote it right! ? 20:42 <+bridge> [ddnet] Catalonia yes 20:42 <+bridge> [ddnet] ban @Ryozuki for banning @snail 20:42 <+bridge> [ddnet] heinrich is fine with small foreign conversations 20:42 <+bridge> [ddnet] if its just a few lines 20:43 <+bridge> [ddnet] Yeah when its a admin its fine 20:43 <+bridge> [ddnet] Jest super! Fajnie ze nie rozumiecie! 😄 20:43 <+bridge> [ddnet] monarchy 20:43 <+bridge> [ddnet] But then he can make up new rules and ban u instantly 20:43 <+bridge> [ddnet] heinrich is king 20:43 <+bridge> [ddnet] Ofc if u are not admin 20:43 <+bridge> [ddnet] but he cant 20:43 <+bridge> [ddnet] gdin is my friend he will unban me anyway 20:43 <+bridge> [ddnet] 🤷 20:43 <+bridge> [ddnet] But he did 20:44 <+bridge> [ddnet] :thonkery: 20:44 <+bridge> [ddnet] stop crying 20:44 <+bridge> [ddnet] No 20:45 <+bridge> [ddnet] who made DDNet bot? he's cool 20:45 <+bridge> [ddnet] my bot 20:45 <+bridge> [ddnet] nicee 20:45 <+bridge> [ddnet] Ddnet bot bots 20:45 <+bridge> [ddnet] ban 20:45 <+bridge> [ddnet] :banhammer: 20:45 <+bridge> [ddnet] ryozuki 20:45 <+bridge> [ddnet] r u from uruguay? 20:45 <+bridge> [ddnet] xd 20:45 <+bridge> [ddnet] Im not 20:45 <+bridge> [ddnet] tunesia 20:45 <+bridge> [ddnet] Im from catalonia 20:45 <+bridge> [ddnet] i even said that ezy 20:46 <+bridge> [ddnet] xd 20:46 <+bridge> [ddnet] oh 20:46 <+bridge> [ddnet] Why would i be from tunesia? 20:46 <+bridge> [ddnet] i dont know xd 20:46 <+bridge> [ddnet] u told me at some point where u were from in the past 20:46 <+bridge> [ddnet] @Ryozuki anything change since last year? 20:46 <+bridge> [ddnet] In you country? I remember you talked about it a lot 20:46 <+bridge> [ddnet] everything went good or wrong ? 20:46 < ddnet-commits> [ddnet] ZombieToad opened pull request #1173: fix Pain weapons bug (master...patch-3) https://git.io/f472u 20:46 <+bridge> [ddnet] To much stuff that im lazy to talk about it again 20:47 <+bridge> [ddnet] :feelsbadman: 20:47 <+bridge> [ddnet] :/ 20:47 <+bridge> [ddnet] I feel sorry 20:47 <+bridge> [ddnet] lol 20:47 <+bridge> [ddnet] Life is hard 20:47 <+bridge> [ddnet] andorra still exists 20:48 <+bridge> [ddnet] i thought they were gone 20:48 <+bridge> [ddnet] xd 20:48 <+bridge> [ddnet] Andorra is where spain polititians store their mony 20:48 <+bridge> [ddnet] i store my money 20:49 <+bridge> [ddnet] in my bank account 20:49 <+bridge> [ddnet] have you read about new law? 20:49 <+bridge> [ddnet] Save* 20:49 <+bridge> [ddnet] Save* 20:49 <+bridge> [ddnet] Mobile sucks 20:49 <+bridge> [ddnet] No i didnt 20:49 <+bridge> [ddnet] From europe ? They will vote 4 july i guess 20:49 <+bridge> [ddnet] Internet thing? 20:49 <+bridge> [ddnet] yea 20:49 <+bridge> [ddnet] censorship 20:49 <+bridge> [ddnet] 4th july america independence 20:50 <+bridge> [ddnet] xd 20:50 <+bridge> [ddnet] 4th july my csgo skin finally csgo marketplace 20:50 <+bridge> [ddnet] @Savander yeah i dont want it, but i knew europe sucks as much as america, they just hide it better 20:50 <+bridge> [ddnet] and i cant do anything so 20:50 <+bridge> [ddnet] dont do shit 20:50 <+bridge> [ddnet] all those save the internet 20:51 <+bridge> [ddnet] it will do. Internet is too big thing. It will destroy small business 20:51 <+bridge> [ddnet] what is the best country out of europe/america? 20:51 <+bridge> [ddnet] you think that people will let it go? 20:52 <+bridge> [ddnet] america you mean USA? 20:52 <+bridge> [ddnet] @Savander americans tried to fight it too 20:52 <+bridge> [ddnet] yea 20:52 <+bridge> [ddnet] canada ? 20:52 <+bridge> [ddnet] usa 20:52 <+bridge> [ddnet] sry 20:52 <+bridge> [ddnet] i think, i would like to live there 20:52 <+bridge> [ddnet] i mean, Canada is pretty k 20:52 <+bridge> [ddnet] i wouldnt like to live in usa 20:52 <+bridge> [ddnet] canada maybe 20:52 <+bridge> [ddnet] i hear people there are good 20:52 <+bridge> [ddnet] i have friends fromt here, they are pretty 20:52 <+bridge> [ddnet] nice to each other 20:52 <+bridge> [ddnet] and good standards 20:53 <+bridge> [ddnet] like to much 20:53 <+bridge> [ddnet] about our law they want to enforce. It's just too stupid to be real 20:53 <+bridge> [ddnet] tbh 20:53 <+bridge> [ddnet] they want to listen to everything what will be passed from your computer to servers 20:53 <+bridge> [ddnet] and check "if it is legal" 20:53 <+bridge> [ddnet] @Savander i find it quite weird that europe did GDPR which i find it nice and then did that 20:53 <+bridge> [ddnet] something similar to content-id from youtube 20:53 <+bridge> [ddnet] maybe u are right and that wont succeed 20:53 <+bridge> [ddnet] But on bigger scale 20:53 <+bridge> [ddnet] i hope 20:54 <+bridge> [ddnet] it's not even possible 20:54 <+bridge> [ddnet] GPDR isn't that bad 20:54 <+bridge> [ddnet] but it closes american marketplace 20:54 <+bridge> [ddnet] from us 20:54 <+bridge> [ddnet] they want to kill anonymity 20:54 <+bridge> [ddnet] for us * 20:54 <+bridge> [ddnet] info is money 20:54 <+bridge> [ddnet] brb in 15 mins 20:57 <+bridge> [ddnet] it's surveillance 21:19 < ddnet-commits> [ddnet] def- pushed 1 new commit to master: https://git.io/f47wx 21:19 < ddnet-commits> ddnet/master 38767df def: Update credits 21:30 <+bridge> [ddnet] @Learath2 can you pm? 21:34 <+bridge> [ddnet] yop 21:34 <+bridge> [ddnet] hey @Learath2 just heard that one of my ips are syn flooding DDNet? Can i know the ip i'll investigate, thats not normal at all.. 22:30 < ddnet-commits> [ddnet] def- pushed 1 new commit to master: https://git.io/f47XU 22:30 < ddnet-commits> ddnet/master daf8347 def: Add cl_nameplates_own for demo recording 22:37 <+bridge> [ddnet] @o_be_one who said that? 22:39 <+bridge> [ddnet] you 22:40 <+bridge> [ddnet] in this channel 22:41 <+bridge> [ddnet] @Learath2 22:41 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/461269683694206976/unknown.png 22:41 <+Learath2> I misspelled one and Rei thought it'd be funny to mock me for it 22:42 <+bridge> [ddnet] oh i see 22:42 <+bridge> [ddnet] so confusing, thanks 😃 22:52 < ddnet-commits> [ddnet] def- pushed 1 new commit to master: https://git.io/f4716 22:52 < ddnet-commits> ddnet/master 89ca2cf def: Allow some key binds in editor when GUI is hidden 23:14 <+bridge> [ddnet] you could also add that he botted in the past 23:18 <+bridge> [ddnet] and you shouldn't make it look like he did all on his own 23:24 <+bridge> [ddnet] xDD 23:24 <+bridge> [ddnet] true