From 3ef3a2a7560bfe0e629379ac818c99757e8d7ab6 Mon Sep 17 00:00:00 2001 From: wo <33163183+woisalreadytaken@users.noreply.github.com> Date: Mon, 19 Feb 2024 02:48:16 -0300 Subject: [PATCH] Make use of a second row in Hit The Target --- src/scripting/Minigames/Minigame18.sp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/scripting/Minigames/Minigame18.sp b/src/scripting/Minigames/Minigame18.sp index ea105cff..c204ad2d 100644 --- a/src/scripting/Minigames/Minigame18.sp +++ b/src/scripting/Minigames/Minigame18.sp @@ -284,10 +284,10 @@ public void Minigame18_OnMinigameSelected(int client) float ang[3] = { 0.0, 90.0, 0.0 }; float pos[3]; - int column = client; - int row = 0; + int column = (client - 1) % 32; + int row = ((client - 1) / 32) % 2; - pos[0] = 10406.0 + float(column*60); + pos[0] = 10466.0 + float(column*60); pos[1] = 7100.0 - float(row*100); pos[2] = -260.0;