CombinedArmsGaming / CAFE3

F3_CA but bouncier.
2 stars 3 forks source link

[Bug] lootbox_macros.cpp definitions prevents sqaudMarkers from adjusting squads with color names (sort of) #157

Closed BAXENdev closed 5 months ago

BAXENdev commented 1 year ago

lootbox_macros.hpp on lines 4-8 definitions collide with squad names that use fully capitalized colors in their names inside of squadMarkers.sqf.

For example: In 3DEN editor, a squad is named "GREEN TEAM". In squadMarkers.sqf, that squads definition would look like:

SET_SQUAD_IMPORTANT(GREEN TEAM,true);
SET_SQUAD_COLOUR(GREEN TEAM,COLOUR_GREEN);
SET_SQUAD_ICON(GREEN TEAM,ICON_MOTORINF);

Here, "GREEN" is caught by the "#define GREEN 20" on line 5 of lootbox_macros.hpp.

A simple workaround is to not use all caps. So bug doesnt critically break anything. It is just a hinder on naming squads by color in all caps, which is a very niche situation.

Bubbus commented 5 months ago

Will be resolved by #214.