mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-14 07:11:02 +00:00
tr - rm doubling
This commit is contained in:
@@ -81,13 +81,13 @@ Submitting this form will create new Users<br>(and their home Villages) on your
|
||||
$tribe = RANDOM;
|
||||
break;
|
||||
case '1':
|
||||
$tribe = ROMANS;
|
||||
$tribe = TRIBE1; // Romans
|
||||
break;
|
||||
case '2':
|
||||
$tribe = TEUTONS;
|
||||
$tribe = TRIBE2; // Teutons
|
||||
break;
|
||||
case '3':
|
||||
$tribe = GAULS;
|
||||
$tribe = TRIBE3; // Gauls
|
||||
break;
|
||||
default:
|
||||
// Should never reach here
|
||||
@@ -157,9 +157,9 @@ Beginners Protection <input type ="checkbox" name="users_protection"
|
||||
<br><br>
|
||||
Tribe:<br>
|
||||
<label><input type="radio" name="tribe" value="0" checked> <?php echo RANDOM; ?></label><br>
|
||||
<label><input type="radio" name="tribe" value="1"> <?php echo ROMANS; ?></label><br>
|
||||
<label><input type="radio" name="tribe" value="2"> <?php echo TEUTONS; ?></label><br>
|
||||
<label><input type="radio" name="tribe" value="3"> <?php echo GAULS; ?></label><br>
|
||||
<label><input type="radio" name="tribe" value="1"> <?php echo TRIBE1; /* Romans */ ?></label><br>
|
||||
<label><input type="radio" name="tribe" value="2"> <?php echo TRIBE2; /* Teutons */ ?></label><br>
|
||||
<label><input type="radio" name="tribe" value="3"> <?php echo TRIBE3; /* Gauls */ ?></label><br>
|
||||
<br><br>
|
||||
<input type="submit" value="Create Users">
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user