2020 called. They want their jokes back.
Posts by videogamesm12
-
-
I'd check it out again, but I'm still banned from it for my shenanigans back in July.
-
↩ @'Anes' You should not be voting based on relationship status.
-
I'm a huge fan of Analog Horror, and this game just takes what makes Analog Horror so good and knocks it out of the park.
https://www.youtube.com/watch?v=hCY69f5Mjvs&t=10s
It's fucking terrifying.
-
- The Offline Web Pages located in the Windows folder still uses the icon dating all the way back to the Windows 9x days
- The Windows Phone Dialer looks exactly the same as it did when it was first introduced
- The IExpress Wizard's design is still the same as wizard programs from Windows 95
- The Windows Mobility Center still exists
(Image provided by @"Alco_Rs11"#91) - The Shared Folder Creation Wizard from the Windows XP era still exists
- MY EYES
- The Offline Web Pages located in the Windows folder still uses the icon dating all the way back to the Windows 9x days
-
Date and Time (please include the timezone):
December 17, 2021 at 2:29 PM MDTDescribe the bug or exploit:
As expected, connecting to Freedom-01 under 1.16.5 results in an error message about an unsupported version of Minecraft. However, the message itself contains a grammatical error: "Please connecting using 1.17.1 or newer."
Plugin(s) impacted:
ViaVersionExpected behaviour (if known):
The message should be "You are using an unsupported Minecraft version! Please connect using 1.17.1 or newer."Step to reproduce:
Join the server under an unsupported version of Minecraft.Server where the bug occurred:
Freedom-01Can the bug or exploit be reproduced on another server within the network?
No. -
(Drawn by @"ClayCoconut"#130) -
I see the problem - Alco is performing a quiet ban on a player who is offline. The code that's supposed to send the message only executes if the target player is currently online. This is definitely an oversight that should be addressed.
https://github.com/AtlasMediaG…Command_ban.java#L66-L125Java
Display Morefinal Player player = getPlayer(args[0]); if (player == null) { // Gets the IP using Essentials data if available if (plugin.esb.isEnabled() && plugin.esb.getEssentialsUser(args[0]) != null) { User essUser = plugin.esb.getEssentialsUser(args[0]); // username = essUser.getName(); ip = essUser.getLastLoginAddress(); } // Last resort - Getting the first result from the username itself else { PlayerData entry = plugin.pl.getData(args[0]); if (entry == null) { msg(PLAYER_NOT_FOUND); return true; } else { username = entry.getName(); ip = entry.getIps().get(0); } } } else { username = player.getName(); ip = FUtil.getIp(player); // Deop player.setOp(false); // Gamemode survival player.setGameMode(GameMode.SURVIVAL); // Clear inventory player.getInventory().clear(); if (!silent) { // Strike with lightning final Location targetPos = player.getLocation(); for (int x = -1; x <= 1; x++) { for (int z = -1; z <= 1; z++) { final Location strike_pos = new Location(targetPos.getWorld(), targetPos.getBlockX() + x, targetPos.getBlockY(), targetPos.getBlockZ() + z); Objects.requireNonNull(targetPos.getWorld()).strikeLightning(strike_pos); } } } else { msg("Banned " + player.getName() + " quietly."); } // Kill player player.setHealth(0.0); } -
This is a cover-up. You're just going inactive to focus on your Twitch career!
(In all seriousness, I do wish you the best of luck.)
-
↩ StevenNL2000 Theoretically, it should. I remember trying to import map art from the server to a local world to see the feasibility of archiving map art and being successful.
-
-
-
-
-
You're incredibly passionate about the server, and I love that.
-
He does have good intentions, and I agree that banning him for trying to help is inappropriate. This is primarily why I don't support calls to ban him, because he's clearly passionate about the server and only wants to help. With that being said, all I wish is for him to think through his suggestions carefully before making them and (more importantly) be patient.
-
Quote
You seem to have a problem with patience. Changing the spawn constantly makes it difficult for returning players to find their builds when they do /spawn. I have had to use the Replay Mod just to find old spawn coordinates to help players look for their builds.
Please, think before you speak.
-
-
It can be done... sort of. The problem is that the default error message tells you the exact error you're getting when trying to connect to freedom-01, which is useful in some cases. Unless there is a way to non-intrusively retain the io.netty.channel.AbstractChannel$AnnotatedConnectException part (e.g. making it appear when you hover over the message), this would just make it harder to figure out why you're unable to connect.
Object.
-
If you are running a server with BukkitTelnet v4.6, update it immediately. I have released a patch on the AtlasMediaGroup fork with an explanation included.
https://github.com/AtlasMediaG…tTelnet/releases/tag/v4.7