From a265189efa58c244db47343ea6c12b5b9c284447 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Mon, 17 Apr 2006 22:29:18 +0000 Subject: [PATCH] Modified param names for touch native and forward to correct values... makes it more clear to someone looking at it --- plugins/include/engine.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/engine.inc b/plugins/include/engine.inc index 0c9d12ae..a984be17 100755 --- a/plugins/include/engine.inc +++ b/plugins/include/engine.inc @@ -151,7 +151,7 @@ native remove_entity(iIndex); native entity_count(); /* Simulate two entities colliding/touching. */ -native fake_touch(iToucher, iTouched); +native fake_touch(iTouched, iToucher); /* 2 formats. Format: DispatchKeyValue("KeyName","Value") - sets keyvalues for the entity specified in the keyvalue() forward. @@ -235,7 +235,7 @@ native eng_get_string(_string, _returnString[], _len); **********/ /* Called when 2 entities touch. */ -forward pfn_touch(ptr, ptd); +forward pfn_touch(iTouched, iToucher); /* Called once every server frame. May cause lag. */ forward server_frame();