Success message on /spawner

Switch to use mob class.
This commit is contained in:
KHobbits 2011-08-19 12:06:35 +01:00
parent 2b48045a8f
commit a2f727bebc
10 changed files with 34 additions and 16 deletions

View file

@ -483,4 +483,9 @@ public class Util
}
return buf.toString();
}
public static String capitalCase(String s)
{
return s.toUpperCase().charAt(0) + s.toLowerCase().substring(1);
}
}