From df186308bb65138693097105941381def41139c9 Mon Sep 17 00:00:00 2001 From: Humza Shahid Date: Sat, 14 Dec 2024 18:07:12 +0000 Subject: [PATCH] reduce floatLimit to 4, which feels better in the game --- fcore/player.sml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fcore/player.sml b/fcore/player.sml index 86262da..679f5cc 100644 --- a/fcore/player.sml +++ b/fcore/player.sml @@ -9,7 +9,7 @@ struct val moveBy = 5 val jumpLimit = 150 - val floatLimit = 5 + val floatLimit = 4 type t = {yAxis: y_axis, xAxis: x_axis, health: int, x: int, y: int}