From b3609a23faaca2e1d644300f0e59e962d87b6a8a Mon Sep 17 00:00:00 2001 From: Arkshine Date: Fri, 11 Apr 2014 23:02:46 +0200 Subject: [PATCH] Add missing magic tag in include file (previous patch). For some reason my change was ignored. --- plugins/include/datapack.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/datapack.inc b/plugins/include/datapack.inc index c141b088..3dd75547 100644 --- a/plugins/include/datapack.inc +++ b/plugins/include/datapack.inc @@ -30,7 +30,7 @@ native DataPack:CreateDataPack(); * @noreturn * @error Invalid handle. */ -native WritePackCell(DataPack:pack, cell); +native WritePackCell(DataPack:pack, any:cell); /** * Packs a float into a data pack. @@ -59,7 +59,7 @@ native WritePackString(DataPack:pack, const str[]); * @return Cell value. * @error Invalid handle, or bounds error. */ -native ReadPackCell(DataPack:pack); +native any:ReadPackCell(DataPack:pack); /** * Reads a float from a data pack.