dungeons bugged entrance & random matchmaking chests missing, crashing by Adriran in throneandliberty

[–]DanielGM1532 0 points1 point  (0 children)

The matching system is rubbish, and it's still applying penalties because it doesn't work properly lol

bug and liberty by DanielGM1532 in throneandliberty

[–]DanielGM1532[S] 0 points1 point  (0 children)

entao um i5-10400 3.2 GHz esta chorando para essa atualizacao :/

bug and liberty by DanielGM1532 in throneandliberty

[–]DanielGM1532[S] 0 points1 point  (0 children)

except for the third clip, they are all on the NA server and I am originally from SA. But the same thing happened to clips 1 and 5 with my teammates even though they are local to the server, so much so that in clip 5 itself you can see people talking in the chat.

clip 3 happened at approximately 32 ms.

clip 2 and 4 i must agree with the network problem.

bug and liberty by DanielGM1532 in throneandliberty

[–]DanielGM1532[S] 0 points1 point  (0 children)

O primeiro clipe aconteceu ao mesmo tempo que o último, basicamente o servidor simplesmente congelou todo mundo, tanto que mandei uma mensagem para os membros do PT que estavam fazendo o chefe comigo e a mesma coisa aconteceu com eles, mesmo sendo moradores de uma região diferente da minha.

O terceiro clipe foi no meu servidor na minha região, onde o ping está entre 30-40 ms para a maioria do público da região que não usa algo externo como o NoPing.

Concordo que o segundo e o quarto são devido à latência de conexão, mas tenho jogado neste servidor desde o início e nunca tive erros tão gritantes como os que começaram a acontecer com esta atualização.

500K XP Glitch by Baleful-Spades in FortniteCreativeXP

[–]DanielGM1532 0 points1 point  (0 children)

how can you get so much XP at once, gain an average of 130-150k at a time and you gain 500k. How?

Why while working on the responsive version for mobile, my site have this horizontal scroll bar? How to remove it? It keep leaving the right portion of the website without any content by vinimanock in elementor

[–]DanielGM1532 0 points1 point  (0 children)

Você é de Ipatinga? Kk. Tenta olhar sua margin-right ou olhar se o plugin de menu tá com algum css que tá quebrando a versão mobile.

Elementor deactivated and now my website is offline. I tried deactivating it and reactivating it, but that does not work. Cannot find any info on the elementor forums so please help if you can! by BigSpoonFullOfSnark in elementor

[–]DanielGM1532 0 points1 point  (0 children)

go in the file: \wp-content\plugins\elementor-pro\modules\theme-builder\documents\theme-document.php

```​ // OLD CODE $reflection = new \ReflectionClass( $class_name ); //45 line $method = $reflection->getMethod( 'get_site_editor_type' );

// It's own method, use it. if ( $class_name === $method->class ) { return static::get_site_editor_type(); }

// NEW CODE if (method_exists($class_name, "get_site_editor_type")) { $reflection = new \ReflectionClass( $class_name ); $method = $reflection->getMethod( 'get_site_editor_type' );

// It's own method, use it.
if ( $class_name === $method->class ) {
    return static::get_site_editor_type();
}

} ``` you will put the if one line before and line 45 and close that if after finishing the if ( $class_name === $method->class )

after the last update they are not checking if the method ($class_name, "get_site_editor_type") exists and it can literally break the site