From 98b0033018b74d2c6973b7b2195697e79aa83774 Mon Sep 17 00:00:00 2001 From: Stev Date: Tue, 20 Aug 2019 23:48:02 +0100 Subject: [PATCH] resolving issue #65 --- gamemodes/irresistible/cnr/commands/admin/admin_three.pwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gamemodes/irresistible/cnr/commands/admin/admin_three.pwn b/gamemodes/irresistible/cnr/commands/admin/admin_three.pwn index 02e5eb3..034bbe9 100644 --- a/gamemodes/irresistible/cnr/commands/admin/admin_three.pwn +++ b/gamemodes/irresistible/cnr/commands/admin/admin_three.pwn @@ -539,8 +539,8 @@ thread OnPlayerBanLog( playerid, const Name[ ] ) for ( new row = 0; row < rows; row ++ ) { - cache_get_field_content_int( row, "DATE", ban_date ); - cache_get_field_content_int( row, "EXPIRE", ban_expire ); + ban_date = cache_get_field_content_int( row, "DATE" ); + ban_expire = cache_get_field_content_int( row, "EXPIRE" ); cache_get_field_content( row, "IP", ban_ip ); cache_get_field_content( row, "REASON", ban_reason ); cache_get_field_content( row, "BANBY", ban_by );