View Issue Details

IDProjectCategoryLast Update
0019182AI War 2GUIJun 21, 2017 12:12 pm
ReporterDraco18s Assigned ToChris_McElligottPark  
Severityminor 
Status resolvedResolutionfixed 
Product Version0.450 Sound! 
Fixed in Version0.450 Sound! 
Summary0019182: Random seeds can be longer than player-entered seeds.
DescriptionThe game will happily generate the seed "1055929899" except that the player can't [i]enter[/i] this seed manually: it's 1 digit too long.
TagsNo tags attached.

Activities

Draco18s

Jun 20, 2017 9:57 pm

developer  

generated.png (45,472 bytes)   
generated.png (45,472 bytes)   

BadgerBadger

Jun 20, 2017 10:19 pm

manager   ~0046332

There's a restriction of 9 characters in the iSeed (input value for the seed field) class:

        public class iSeed : InputAbstractBase
        {
......
            public override char ValidateInput( string input, int charIndex, char addedChar )
            {
                if ( input.Length >= 9 ) <==== This number should be higher then
                    return '\0';
            
That number might need to be increased

Chris_McElligottPark

Jun 21, 2017 12:12 pm

administrator   ~0046334

Thank you for the fix! :D

Issue History

Date Modified Username Field Change
Jun 20, 2017 9:57 pm Draco18s New Issue
Jun 20, 2017 9:57 pm Draco18s File Added: generated.png
Jun 20, 2017 10:19 pm BadgerBadger Note Added: 0046332
Jun 21, 2017 12:12 pm Chris_McElligottPark Note Added: 0046334
Jun 21, 2017 12:12 pm Chris_McElligottPark Status new => resolved
Jun 21, 2017 12:12 pm Chris_McElligottPark Fixed in Version => 0.450 Sound!
Jun 21, 2017 12:12 pm Chris_McElligottPark Resolution open => fixed
Jun 21, 2017 12:12 pm Chris_McElligottPark Assigned To => Chris_McElligottPark