From c5c2721e6083be5da14b9e7f5254a06e3ca0f022 Mon Sep 17 00:00:00 2001 From: Arkshine Date: Mon, 12 May 2014 16:40:19 +0200 Subject: [PATCH] Fix missing Float tag in some DoD forwards headers. --- plugins/include/dodx.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/include/dodx.inc b/plugins/include/dodx.inc index 5903eaae..99710b31 100755 --- a/plugins/include/dodx.inc +++ b/plugins/include/dodx.inc @@ -73,13 +73,13 @@ forward dod_client_prone(id, value); forward dod_client_weaponswitch(id, wpnew, wpnold); /* Forward for when a grenade explodes and its location */ -forward dod_grenade_explosion(id, pos[3], wpnid); +forward dod_grenade_explosion(id, Float:pos[3], wpnid); /* Forward for when a rocket explodes and its location */ -forward dod_rocket_explosion(id, pos[3], wpnid); +forward dod_rocket_explosion(id, Float:pos[3], wpnid); /* Forward for when a player picks up a object */ -forward dod_client_objectpickup(id, objid, pos[3], value); +forward dod_client_objectpickup(id, objid, Float:pos[3], value); /* Forward for when a users stamina decreases */ forward dod_client_stamina(id, stamina);