From 8b8d6f07bc347ad603de56b394dc62595caecfe1 Mon Sep 17 00:00:00 2001 From: Humza Shahid Date: Sat, 14 Dec 2024 18:11:59 +0000 Subject: [PATCH] change floatLimit to 3, which seems to be fine --- fcore/player.sml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fcore/player.sml b/fcore/player.sml index 679f5cc..736acb6 100644 --- a/fcore/player.sml +++ b/fcore/player.sml @@ -9,7 +9,7 @@ struct val moveBy = 5 val jumpLimit = 150 - val floatLimit = 4 + val floatLimit = 3 type t = {yAxis: y_axis, xAxis: x_axis, health: int, x: int, y: int}