mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
use safeModulo
This commit is contained in:
parent
f4fa25d339
commit
4141c939d6
@ -164,11 +164,8 @@ export class HUDBaseToolbar extends BaseHUDPart {
|
|||||||
? -1
|
? -1
|
||||||
: 1;
|
: 1;
|
||||||
let newIndex = this.lastSelectedIndex;
|
let newIndex = this.lastSelectedIndex;
|
||||||
for (let i = 0; i < this.primaryBuildings.length; ++i, newIndex += direction) {
|
for (let i = 0; i < this.primaryBuildings.length; ++i) {
|
||||||
newIndex %= this.primaryBuildings.length;
|
newIndex = safeModulo(newIndex + direction, this.primaryBuildings.length);
|
||||||
if (newIndex < 0) {
|
|
||||||
newIndex += this.primaryBuildings.length;
|
|
||||||
}
|
|
||||||
const metaBuilding = gMetaBuildingRegistry.findByClass(this.primaryBuildings[newIndex]);
|
const metaBuilding = gMetaBuildingRegistry.findByClass(this.primaryBuildings[newIndex]);
|
||||||
const handle = this.buildingHandles[metaBuilding.id];
|
const handle = this.buildingHandles[metaBuilding.id];
|
||||||
if (!handle.selected && handle.unlocked) {
|
if (!handle.selected && handle.unlocked) {
|
||||||
|
Loading…
Reference in New Issue
Block a user