From fb734e4124b734b77ee7639c402573342054ecd4 Mon Sep 17 00:00:00 2001 From: Kyle Sanderson <kyle.leet@gmail.com> Date: Fri, 17 Jan 2014 23:14:40 -0500 Subject: [PATCH] Add any tag to WritePackCell and ReadPackCell natives (bug 6001, r=asherkin) --- 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 263af798..73c66ff6 100644 --- a/plugins/include/datapack.inc +++ b/plugins/include/datapack.inc @@ -50,7 +50,7 @@ native Handle:CreateDataPack(); * @noreturn * @error Invalid handle. */ -native WritePackCell(Handle:pack, cell); +native WritePackCell(Handle:pack, any:cell); /** * Packs a float into a data pack. @@ -79,7 +79,7 @@ native WritePackString(Handle:pack, const String:str[]); * @return Cell value. * @error Invalid handle, or bounds error. */ -native ReadPackCell(Handle:pack); +native any:ReadPackCell(Handle:pack); /** * Reads a float from a data pack.