I don't know if you're aware of these already but /v +shop and custom /home commands from being a supporter don't seem to be working.
Removed the things I am not too upset about... it wasn't much. The rest of this is going to be SUPER annoying. Most especially because I already am the walking smp7 emc wiki when I'm on... now? now I can't sign into emc or I may get trampled for answers XD
There's an odd glitch that were you walk backwards into corners of anvils you get half stuck in the block. I tried thhis out on multiple anvils. I also got strange looks
I would assume... this is also not a new bug? (with this update). As I almost certain that we did not touch anything related to standing on anvils.
all the things listed are bugs and about to be pushed a fix up for... you dont have to deal with the /home or loc stuff lol. could be next week if all goes well.
I just had to change that syntax. Please put a ! before the address/name now. /res pset !1111 name flag t The system was getting confused on were you trying to set perms for Player X or trying to set perms on Player X's res... SOME commands will work without the !, but use it for best reliability. Code: Residence res = null; CommandSender sender = c.getSender(); final String firstArg = c.getFirstArg(); if (firstArg != null) { if (( firstArg.startsWith("!") && (res = getResidenceByName(firstArg.substring(1))) != null ) || ( (c.getNumParams() == c.getArgs().size()|| c.isLastArg()) && (res = getResidenceByName(firstArg)) != null )) { c.popFirstArg(); } }