fix incorrect left photon blast assignment bug
This commit is contained in:
+1
-1
@@ -298,8 +298,8 @@ void ItemData::add_mag_photon_blast(uint8_t pb_num) {
|
|||||||
}
|
}
|
||||||
if (pb_num >= 4) {
|
if (pb_num >= 4) {
|
||||||
throw runtime_error("left photon blast number is too high");
|
throw runtime_error("left photon blast number is too high");
|
||||||
pb_nums |= (pb_num << 6);
|
|
||||||
}
|
}
|
||||||
|
pb_nums |= (pb_num << 6);
|
||||||
flags |= 4;
|
flags |= 4;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user