Fix regex for internet bill and update splitBill since it's just lil Cammy now
[SonOfLokstallBot.git] / src / common.php
index fb00126..36e8f42 100644 (file)
@@ -54,7 +54,7 @@ function getTelegram(): TelegramAPI {
 }
 
 function splitBill(float $amount) : float {
-    return floor($amount/2);
+    return $amount;
 }
 
 function identity($x) {