From 37a09145cb12763b5b31429cbabd470effcbbc34 Mon Sep 17 00:00:00 2001 From: John Michael Reyes <120303127+FreddieCrew@users.noreply.github.com> Date: Fri, 17 Nov 2023 03:16:38 -0600 Subject: [PATCH] Fix code formatting --- vending.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vending.inc b/vending.inc index c1085e5..6540c4a 100644 --- a/vending.inc +++ b/vending.inc @@ -337,8 +337,8 @@ stock GetVendingMachineRotation(id, &Float:RX, &Float:RY, &Float:RZ) { return 1; } stock GetXYInFrontOfVending(id, &Float:x, &Float:y, Float:distance) { - // Function taken from https://github.com/wuzi/vending (Thanks to wuzi for inspiring me to create this system)! - static Float:a, Float:z; + // Function taken from https://github.com/wuzi/vending (Thanks to wuzi for inspiring me to create this system)! + static Float:a, Float:z; GetVendingMachineRotation(id, x, y, a); GetVendingMachinePos(id, x, y, z); @@ -347,7 +347,7 @@ stock GetXYInFrontOfVending(id, &Float:x, &Float:y, Float:distance) { x += (distance * floatsin(-a, degrees)); y += (distance * floatcos(-a, degrees)); - return 1; + return 1; } stock bool:IsValidVendingMachine(id) {