Skip to content

Commit e908401

Browse files
committed
Fix isInsideColShape formatting
1 parent 0a7a28a commit e908401

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Client/mods/deathmatch/logic/luadefs/CLuaColShapeDefs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ int CLuaColShapeDefs::IsInsideColShape(lua_State* luaVM)
345345
{
346346
// bool isInsideColShape ( colshape theColShape, float posX, float posY, float posZ )
347347
CClientColShape* pColShape;
348-
CVector vecPosition;
348+
CVector vecPosition;
349349

350350
CScriptArgReader argStream(luaVM);
351351
argStream.ReadUserData(pColShape);

Server/mods/deathmatch/logic/luadefs/CLuaColShapeDefs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ int CLuaColShapeDefs::IsInsideColShape(lua_State* luaVM)
334334
{
335335
// bool isInsideColShape ( colshape theColShape, float posX, float posY, float posZ )
336336
CColShape* pColShape;
337-
CVector vecPosition;
337+
CVector vecPosition;
338338

339339
CScriptArgReader argStream(luaVM);
340340
argStream.ReadUserData(pColShape);

0 commit comments

Comments
 (0)