Clipboard.

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
tumblr_mqtm0xq9Ip1rknmhao1_500.gif
 
  • Like
Reactions: xTordX and gold49

Downloading lots of nightcore off of YouTube using a mp3 converter is super fun. Doesn't get annoying after the tenth song at all.
 
imgur com/TQtr3tE

One of the guys in AltSanity tried to link me to a screenshot of my End of Day clock link thingy, which was derped on his end, but the forum wouldn't let him post a link, so he deleted the dot and I had to copy-paste it into a new tab in my browser.
 
Every night, may choose to roleblock another player. Vedalken Countermage will not be notified if he/she accomplished anything by doing this; and similarly, the other player will not be told why their power failed.

Quoting stuff for AltSanity.
 
Code:
public class FetchedUpdateable {

public final boolean auto; public final int severity; public final String displaySeverity; public final String display; public final String oldDisp; public final String url; public final int old; public final int version; public final int diff; public final String name; public boolean chatted = false;@SuppressWarnings("unchecked")
public FetchedUpdateable(IUpdateable mod) {
this.name = mod.getName();Yaml yaml = new Yaml();Map<String, Object> load = (Map<String, Object>) yaml.load(mod.getRemote()); this.auto = (Boolean) load.get("auto"); this.url = (String) load.get("url");List<Integer> severityL = (List<Integer>) load.get("severity");List<String> displayL = (List<String>) load.get("display");List<Integer> versionL = (List<Integer>) load.get("technical");HashMap<String, String> local = mod.getLocal(); this.old = Integer.valueOf(local.get("technical")); this.oldDisp = local.get("display"); int splitIndex = versionL.indexOf(this.old); this.version = versionL.get(versionL.size() - 1); this.display = displayL.get(versionL.size() - 1); this.severity = Util.max(Util.after(severityL, splitIndex)); this.displaySeverity = makeDisplayS(severity); this.diff = this.version - this.old;}

public FetchedUpdateable(IUpdateable mod, boolean auto, int severity, String display, String oldDisp, String url, int old, int version) {
this(auto, severity, makeDisplayS(severity),display, oldDisp, url, old, version, version - old, mod);}

public FetchedUpdateable(boolean auto, int severity, String displaySeverity, String display, String oldDisp, String url, int old, int version, int diff, IUpdateable mod) {
this(auto, severity, displaySeverity, display, oldDisp, url, old, version, diff, mod.getName());}

public FetchedUpdateable(boolean auto, int severity, String displaySeverity, String display, String oldDisp, String url, int old, int version, int diff, String modName) {
this.auto = auto; this.severity = severity; this.displaySeverity = displaySeverity; this.display = display; this.oldDisp = oldDisp; this.url = url; this.old = old; this.version = version; this.diff = diff; this.name = modName;}

protected static String makeDisplayS(int severity) {
if (severity < 2) {
return "Normal";} else if (severity < 3) {
return "Severe!";}
return "Critical!!";}
}

Surrounded that with [CODE] to help your lives :P