Skip to content

Commit 4bb5a4f

Browse files
authored
fix: Ship carry size (#1048)
1 parent 1c79879 commit 4bb5a4f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/scr_creation/scr_creation.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ function bulk_selection_buttons_setup(){
100100
cords : [500, 322],
101101
},
102102
{
103-
text : $"Pauldron 1: {col[right_pauldron]}",
103+
text : $"Pauldron 1: {col[left_pauldron]}",
104104
tooltip:"First Pauldron",
105105
tooltip2:"The color of your Astartes' left Pauldron. Normally this Pauldron displays their rank and designation.",
106106
cords : [500, 357],
107107
},
108108
{
109-
text : $"Pauldron 2: {col[left_pauldron]}",
109+
text : $"Pauldron 2: {col[right_pauldron]}",
110110
tooltip:"Second Pauldron",
111111
tooltip2:"The color of your Astartes' right Pauldron. Normally this Pauldron contains the Chapter Insignia.",
112112
cords : [500, 392],

scripts/scr_unit_quick_find_pane/scr_unit_quick_find_pane.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function UnitQuickFindPanel() constructor{
7474
}
7575
try{
7676

77-
for (var u=1;u<array_length(obj_ini.veh_race);u++){
77+
for (var u=0;u<array_length(obj_ini.veh_race[co]);u++){
7878
if (obj_ini.veh_race[co][u]==0) then continue;
7979
if (obj_ini.veh_wid[co][u]>0){
8080
unit_location = obj_ini.veh_loc[co][u];

0 commit comments

Comments
 (0)