Skip to content
Open
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
2 changes: 1 addition & 1 deletion magent2/environments/combined_arms/combined_arms.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def __init__(
np.minimum(reward_vals, 0).sum(),
np.maximum(reward_vals, 0).sum(),
]
names = ["redmelee", "redranged", "bluemele", "blueranged"]
names = ["redmelee", "redranged", "bluemelee", "blueranged"]
Copy link

Copilot AI Jul 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch on fixing the typo! However, there's still an inconsistency in the spelling. The corrected "bluemelee" should be "bluemelee" to match the pattern of "redmelee", but it appears you may have intended "bluemelee" (with double 'e') when the consistent spelling should be "bluemelee" to match "redmelee".

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is litteraly what ive done

super().__init__(
env,
env.get_handles(),
Expand Down