Pyramid example base fix

The base for the Pyramid scheme bin example created an invalid base because it wasn't a whole number.
This commit is contained in:
Dan Fredell 2024-06-19 21:31:44 -05:00 committed by GitHub
parent 36345f3efb
commit 3d6d4f3725
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -168,7 +168,7 @@ gridfinityBase(gx, gy, 42, 0, 0, 1);
// Pyramid scheme bin // Pyramid scheme bin
/* /*
gx = 4.5; gx = 4;
gy = 4; gy = 4;
gridfinityInit(gx, gy, height(6), 0, 42) { gridfinityInit(gx, gy, height(6), 0, 42) {
for (i = [0:gx-1]) for (i = [0:gx-1])