Volumetric Limiter by Daniel Gaskell

This topic is for discussions related to Volumetric Limiter by Daniel Gaskell.

I’ve discovered a bug in this extension, and fixed it.

The extension was incorrectly calculating cubic volume. The code below

To decide what number is the cubic volume of (active size - a volumetric size):
	decide on (the length part of active size times the width part of active size) times the height part of active size.

needs to be replaced with the code below:

To decide what number is the cubic volume of (active size - a volumetric size):
	decide on ((the length part of active size) times (the width part of active size)) times the height part of active size.

I’d be interested to know why the extra brackets fix it, since I’m not sure, but if anyone else happens to be using this extension, this works! :grinning_face_with_smiling_eyes: