Skip to content

Commit

Permalink
fix: missing number
Browse files Browse the repository at this point in the history
  • Loading branch information
MCPO-Spartan-117 committed Feb 24, 2025
1 parent dc0593a commit 5c91733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion objects/obj_star_select/Draw_64.gml
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ if (obj_controller.selecting_planet!=0){
}
}
}else if (current_button=="+Recruiting"){
if (obj_controller.recruiting_worlds_bought > 0 && p_data.current_owner <= && !p_data.at_war()) {
if (obj_controller.recruiting_worlds_bought > 0 && p_data.current_owner <= 5 && !p_data.at_war()) {
if (!p_data.has_feature(P_features.Recruiting_World)) {
if (obj_controller.faction_status[eFACTION.Imperium] == "War") {
obj_controller.recruiting_worlds_bought -= 1;
Expand Down

0 comments on commit 5c91733

Please sign in to comment.