From f6d9d7c683d246a96efd3ad62a7a63f527be7e30 Mon Sep 17 00:00:00 2001 From: Lorenc Pekaj Date: Wed, 17 Oct 2018 03:34:59 +1100 Subject: [PATCH] fix static includes --- gamemodes/irresistible/cnr/static/actors.pwn | 7 +++++-- gamemodes/irresistible/cnr/static/map_icons.pwn | 3 +++ gamemodes/irresistible/cnr/static/player_objects.pwn | 5 ++++- gamemodes/irresistible/cnr/static/server_objects.pwn | 5 ++++- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/gamemodes/irresistible/cnr/static/actors.pwn b/gamemodes/irresistible/cnr/static/actors.pwn index d309703..6d3abaf 100644 --- a/gamemodes/irresistible/cnr/static/actors.pwn +++ b/gamemodes/irresistible/cnr/static/actors.pwn @@ -1,10 +1,13 @@ /* * Irresistible Gaming 2018 * Developed by Lorenc Pekaj - * Module: actors.inc - * Purpose: hosts all actor related data + * Module: cnr\static\actors.inc + * Purpose: hosts all static actor related data */ +/* ** Includes ** */ +#include < YSI\y_hooks > + /* ** Variables ** */ enum E_ACTOR_DATA { diff --git a/gamemodes/irresistible/cnr/static/map_icons.pwn b/gamemodes/irresistible/cnr/static/map_icons.pwn index 6395143..72ff4f5 100644 --- a/gamemodes/irresistible/cnr/static/map_icons.pwn +++ b/gamemodes/irresistible/cnr/static/map_icons.pwn @@ -5,6 +5,9 @@ * Purpose: static map icons in the server */ +/* ** Includes ** */ +#include < YSI\y_hooks > + /* ** Functions ** */ hook OnScriptInit( ) { diff --git a/gamemodes/irresistible/cnr/static/player_objects.pwn b/gamemodes/irresistible/cnr/static/player_objects.pwn index f0044f8..8c2aabd 100644 --- a/gamemodes/irresistible/cnr/static/player_objects.pwn +++ b/gamemodes/irresistible/cnr/static/player_objects.pwn @@ -1,10 +1,13 @@ /* * Irresistible Gaming 2018 * Developed by Lorenc Pekaj - * Module: static_cnr\player_objects.inc + * Module: cnr\static\player_objects.inc * Purpose: player associated objects, including but not limited to interiors */ +/* ** Includes ** */ +#include < YSI\y_hooks > + /* ** Functions ** */ hook OnScriptInit( ) { diff --git a/gamemodes/irresistible/cnr/static/server_objects.pwn b/gamemodes/irresistible/cnr/static/server_objects.pwn index 025efae..33a465d 100644 --- a/gamemodes/irresistible/cnr/static/server_objects.pwn +++ b/gamemodes/irresistible/cnr/static/server_objects.pwn @@ -1,10 +1,13 @@ /* * Irresistible Gaming 2018 * Developed by Lorenc Pekaj - * Module: static_cnr\server_objects.inc + * Module: cnr\static\server_objects.inc * Purpose: server associated objects, including but not limited to interiors */ +/* ** Includes ** */ +#include < YSI\y_hooks > + /* ** Functions ** */ hook OnScriptInit( ) {