From f26a86bcc78c1946f55b6a399039e3bd8fb5dd16 Mon Sep 17 00:00:00 2001 From: jacopo grandi Date: Mon, 22 Feb 2021 20:18:25 +0100 Subject: fix maxrange and testing --- gst/info.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gst/info.c') diff --git a/gst/info.c b/gst/info.c index 2329baf..0eaecb3 100644 --- a/gst/info.c +++ b/gst/info.c @@ -240,13 +240,14 @@ float info_unit_get_range(infos *info, info_unit *u, int w) { float info_unit_get_maxrange(infos *info, info_unit *u) { int lc = u->levels[LEVEL_CHASSIS]; - float sum = 0; + float max = 0; for(int i=0; ichassis[u->chassis].slot_weapon[lc]; i++) { if (u->weapons[i] != -1) { - sum += info_unit_get_range(info, u, i); + float range = info_unit_get_range(info, u, i); + if (range > max) { max = range; } } } - return sum; + return max; } float info_unit_get_charge_per_shot (infos *info, info_unit *u, int w) { -- cgit v1.2.3-54-g00ecf