From f5e39c2a98f3217e89518a91071d992269db1bdb Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 13 三月 2019 23:47:41 +0800
Subject: [PATCH] 3335 删除大量的装备绑定相关逻辑。
---
Lua/Gen/MapTransferUtilityWrap.cs | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Lua/Gen/MapTransferUtilityWrap.cs b/Lua/Gen/MapTransferUtilityWrap.cs
index 3baa016..8bc1170 100644
--- a/Lua/Gen/MapTransferUtilityWrap.cs
+++ b/Lua/Gen/MapTransferUtilityWrap.cs
@@ -211,10 +211,10 @@
if(gen_param_count == 3&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 3))
{
- int _npcID = LuaAPI.xlua_tointeger(L, 2);
- int _sid = LuaAPI.xlua_tointeger(L, 3);
+ int __npcID = LuaAPI.xlua_tointeger(L, 2);
+ int __sid = LuaAPI.xlua_tointeger(L, 3);
- gen_to_be_invoked.MoveToNPC( _npcID, _sid );
+ gen_to_be_invoked.MoveToNPC( __npcID, __sid );
@@ -222,9 +222,9 @@
}
if(gen_param_count == 2&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2))
{
- int _npcID = LuaAPI.xlua_tointeger(L, 2);
+ int __npcID = LuaAPI.xlua_tointeger(L, 2);
- gen_to_be_invoked.MoveToNPC( _npcID );
+ gen_to_be_invoked.MoveToNPC( __npcID );
--
Gitblit v1.8.0