From eebea4a7232916df911dd31d353841dd9e6b0ee0 Mon Sep 17 00:00:00 2001 From: Cameron Ball Date: Sun, 16 Jun 2019 15:11:40 +0800 Subject: [PATCH] split bill by 3 for Megan --- src/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.php b/src/common.php index fb00126..7cadbd4 100644 --- a/src/common.php +++ b/src/common.php @@ -54,7 +54,7 @@ function getTelegram(): TelegramAPI { } function splitBill(float $amount) : float { - return floor($amount/2); + return floor($amount/3); } function identity($x) { -- 2.11.0