Skip to content

Commit b909200

Browse files
committed
Added seed display
1 parent 7a343ab commit b909200

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

objects/oServer.object.gmx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1887,9 +1887,10 @@ draw_text(5, 105, "Missile Tanks: " + string(global.mtanks) + "/44");
18871887
draw_text(5, 135, "Super Missile Tanks: " + string(global.stanks) + "/10");
18881888
draw_text(5, 165, "Power Bomb Tanks: " + string(global.ptanks) + "/10");
18891889
draw_text(5, 195, "Total Remaining Metroids: " + string(global.monstersleft));
1890+
draw_text(5, 225, "Seed: " + string(global.seed));
18901891

18911892
if(ds_list_size(idList) > 0){
1892-
draw_text(5, 235, "Players:");
1893+
draw_text(5, 265, "Players:");
18931894
for(var i=0; i<ds_list_size(idList); i++){
18941895
var arrList = idList[| i];
18951896
if(array_length_2d(arrList, 0) > 2){
@@ -1920,7 +1921,7 @@ if(ds_list_size(idList) > 0){
19201921
color = c_white;
19211922
break;
19221923
}
1923-
draw_text_color(5, 265 + (i * 30), arrList[0, 2], color, color, color, color, 1);
1924+
draw_text_color(5, 265 + ((i + 1) * 30), arrList[0, 2], color, color, color, color, 1);
19241925
}
19251926
}
19261927
}

0 commit comments

Comments
 (0)