increase length of default room name to 5 chars

There are conflicts on relay. So while it's still relevant, reduce 'em.
This commit is contained in:
Eric House 2020-11-15 16:01:46 -08:00
parent 5d86743857
commit 105f93f3ab

View file

@ -1215,7 +1215,7 @@ public class GameUtils {
{ {
Assert.assertTrue( 0 != gameID ); Assert.assertTrue( 0 != gameID );
// substring: Keep it short so fits in SMS better // substring: Keep it short so fits in SMS better
return String.format( "%X", gameID ).substring( 0, 4 ); return String.format( "%X", gameID ).substring( 0, 5 );
} }
public static String makeRandomID() public static String makeRandomID()