From c9d1545e4a72318c69525184952184df8471f482 Mon Sep 17 00:00:00 2001 From: ArKaNeMaN Date: Fri, 12 May 2023 15:30:18 +0300 Subject: [PATCH] Update versions --- amxmodx/scripting/DG_MoreBonuses.sma | 2 +- amxmodx/scripting/DG_MoreFuncs.sma | 2 +- amxmodx/scripting/DeathGift.sma | 2 +- amxmodx/scripting/include/DeathGift.inc | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/amxmodx/scripting/DG_MoreBonuses.sma b/amxmodx/scripting/DG_MoreBonuses.sma index 2d97cd9..0a1812d 100644 --- a/amxmodx/scripting/DG_MoreBonuses.sma +++ b/amxmodx/scripting/DG_MoreBonuses.sma @@ -48,7 +48,7 @@ new gChances = 0; #endif new const PLUG_NAME[] = "[DG] More Bonuses"; -new const PLUG_VER[] = "2.0.0"; +new const PLUG_VER[] = DEATHGIFT_VERSION; public plugin_natives() { register_native("DG_RegisterBonus", "@Native_RegisterBonus"); diff --git a/amxmodx/scripting/DG_MoreFuncs.sma b/amxmodx/scripting/DG_MoreFuncs.sma index 15354c7..b32508f 100644 --- a/amxmodx/scripting/DG_MoreFuncs.sma +++ b/amxmodx/scripting/DG_MoreFuncs.sma @@ -24,7 +24,7 @@ #endif new const PLUG_NAME[] = "[DG] More Funcs"; -new const PLUG_VER[] = "2.0.1"; +new const PLUG_VER[] = DEATHGIFT_VERSION; public DG_OnBonusesInit() { register_plugin(PLUG_NAME, PLUG_VER, "ArKaNeMaN"); diff --git a/amxmodx/scripting/DeathGift.sma b/amxmodx/scripting/DeathGift.sma index f9c4f93..ab4db54 100644 --- a/amxmodx/scripting/DeathGift.sma +++ b/amxmodx/scripting/DeathGift.sma @@ -51,8 +51,8 @@ new Fwds[E_Fwds]; // #define FwdExec(%1,%2) ExecuteForward(Fwds[Fwd_%1],%2) // #define FwdReg(%1,%2) Fwds[Fwd_%1]=CreateMultiForward(%2,ET_STOP2) -new const PLUG_VER[] = "2.1.0"; new const PLUG_NAME[] = "Death Gift"; +new const PLUG_VER[] = DEATHGIFT_VERSION; public plugin_natives() { register_library("DeathGift"); diff --git a/amxmodx/scripting/include/DeathGift.inc b/amxmodx/scripting/include/DeathGift.inc index f48ac45..9f6e27e 100644 --- a/amxmodx/scripting/include/DeathGift.inc +++ b/amxmodx/scripting/include/DeathGift.inc @@ -3,6 +3,8 @@ #endif #define _deathgift_included +#define DEATHGIFT_VERSION "2.1.1" + #define DG_CONTINUE 0 /* Continue function execution */ #define DG_STOP 1 /* abort function */