235236237238239240241242243244245
{ int index = y * 9 + x; if (0 <= index && index < listSize) { AbstractFluidWidget widget = fluidWidgets.get(index); widget.mouseClicked(x * 18 + 7, y * 18 - 1, mouseX, mouseY); } } } }