Closed pnahratow closed 1 month ago
Someone needs to fix WARNING: unable to find texture hp25_side
in lq1/maps/src/brushmodels/b_bh100.map
@lavenderdotpet you maybe?
I think fail_on_regex should be a list containing multiple regex expressions so it's easier to add new failure cases in the future. Other than that, looks good.
I thought about that as well and started to implement that but then I realized I can catch most of that with a regex already. Like
r"(One String|Some completely different string)"
or different types of warnings
r"WARNING: (unable to find texture|something different)"
So I dropped that. Do you agree?
@pnahratow
I thought about that as well and started to implement that but then I realized I can catch most of that with a regex already.
I think that gets pretty messy if you have to catch a lot of different cases. And there are definitely other warnings we may like to add in the future. It would be more readable to have each case be a separate string on a separate line.
@Zungrysoft I have implemented it using a list. Thanks for the review.
Someone needs to fix
WARNING: unable to find texture hp25_side
inlq1/maps/src/brushmodels/b_bh100.map
@lavenderdotpet you maybe?
ill take a look prob an internal unseen face
edit: yeah
ill put a dummy texture in for it
@pnahratow add this to the lq_health_ammo folder
@pnahratow add this to the lq_health_ammo folder
hp25_side
Could you make this a separate PR instead? So we can keep them focused.
@pnahratow add this to the lq_health_ammo folder
hp25_side
Could you make this a separate PR instead? So we can keep them focused.
kinda has to be this one and its a single file
@pnahratow add this to the lq_health_ammo folder
hp25_side
Could you make this a separate PR instead? So we can keep them focused.
kinda has to be this one and its a single file
edit: also like its the only thing preventing this being merged other then a 2nd aprovel
We can rerun the build here once the file is merged without issue, and because it's critical status it can be merged right away.
I won't intervene further, but keep in mind this treads the line between focused v unfocused and probably should not land when we start guideline enforcement
We can rerun the build here once the file is merged without issue, and because it's critical status it can be merged right away.
I won't intervene further, but keep in mind this treads the line between focused v unfocused and probably should not land when we start guideline enforcement
heard will approve then
this is now being done
@ pnahratow add this to the lq_health_ammo folder
hp25_side
@pnahratow ignore this ↑ this is now being done over here ↓ https://github.com/lavenderdotpet/LibreQuake/pull/176
Description of Changes
This change makes a map compile fail if there are textures missing.
Visual Sample
I have tested this on the faulty commit in !173 and it worked
Checklist