fixed a possible crash when generating YASC message

This commit is contained in:
Zeno Rogue 2024-04-07 23:35:08 +02:00
parent b9608dcd4c
commit 32d329d81e
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ EX void create_yasc_message() {
if(captures.size() == 2 && context.size() == 1 && cwt.at->type == 6) {
vector<int> dirs;
forCellIdEx(c1, i, cwt.at) for(auto cap: captures) if(cap.first == c1) dirs.push_back(i);
if(abs(dirs[0]-dirs[1]) == 3) {
if(isize(dirs) == 2 && abs(dirs[0]-dirs[1]) == 3) {
auto c1 = captures.begin(); c1++;
yasc_message = XLAT("pinched by %the1 and %the2", captures.begin()->second, c1->second);
}