![]() |
VOOZH | about |
Plays with friends on private servers.
Has a thing for "felicitous numbers"; powers of 2 and 3x3 areas or 3x3x3 volumes.
Feels torches places in the wilderness is "littering."
I wrote a Greasemonkey script that gets rid of that sidebar that people are talking about
// ==UserScript==
// @name Improved Minecraftwiki
// @namespace minecraftwiki
// @description Fixes Cursegaming's design
// @include http://www.minecraftwiki.net/*
// @include https://www.minecraftwiki.net/*
// @include http://minecraftwiki.net/*
// @include https://minecraftwiki.net/*
// ==/UserScript==
var hideCursePanel = true;
(function() {
contentBlock=document.getElementById('bodyContent2');
contentBlock.style.width='100%';
if (hideCursePanel) {
cursepanel=document.getElementById('curse-panel');
cursepanel.style.display='none';
}
})();