Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/scr_creation/scr_creation.gml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ function bulk_selection_buttons_setup(){
cords : [500, 322],
},
{
text : $"Pauldron 1: {col[right_pauldron]}",
text : $"Pauldron 1: {col[left_pauldron]}",
tooltip:"First Pauldron",
tooltip2:"The color of your Astartes' left Pauldron. Normally this Pauldron displays their rank and designation.",
cords : [500, 357],
},
{
text : $"Pauldron 2: {col[left_pauldron]}",
text : $"Pauldron 2: {col[right_pauldron]}",
tooltip:"Second Pauldron",
tooltip2:"The color of your Astartes' right Pauldron. Normally this Pauldron contains the Chapter Insignia.",
cords : [500, 392],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function UnitQuickFindPanel() constructor{
}
try{

for (var u=1;u<array_length(obj_ini.veh_race);u++){
for (var u=0;u<array_length(obj_ini.veh_race[co]);u++){
if (obj_ini.veh_race[co][u]==0) then continue;
if (obj_ini.veh_wid[co][u]>0){
unit_location = obj_ini.veh_loc[co][u];
Expand Down
Loading