1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-13 02:01:51 +00:00

add braces

This commit is contained in:
Sense101 2022-01-20 21:57:20 +00:00
parent 36f125e6d7
commit 10e9d2cf8b

View File

@ -181,7 +181,9 @@ export class ItemEjectorSystem extends GameSystemWithFilter {
}
// Check if we are still in the process of ejecting, can't proceed then
if (slot.progress < maxProgress) continue;
if (slot.progress < maxProgress) {
continue;
}
const extraProgress = slot.progress - maxProgress;