Fixes some conversion mistakes in the scripts

This commit is contained in:
Areloch 2021-01-13 01:51:05 -06:00 committed by Lukas Aldershaab
parent 9ccaa6d3ea
commit c051a0357c
8 changed files with 17 additions and 17 deletions

View file

@ -143,7 +143,7 @@ function GuiObjectInspectorMethodList::init( %this, %object )
%methods = %object.dumpMethods();
%count = %methods.count();
%methodsGroup = %this.insertItem( 0, "Methods" );
%paren" @ $TorqueScriptFileExtension @ "ed = %this.insertItem( %methodsGroup, "Scripted" );
%parentScripted = %this.insertItem( %methodsGroup, "Scripted" );
%parentNative = %this.insertItem( %methodsGroup, "Native" );
for( %i = 0; %i < %count; %i ++ )
@ -158,7 +158,7 @@ function GuiObjectInspectorMethodList::init( %this, %object )
%tooltip = %prototype;
if( isFile( %fileName ) )
{
%parent = %paren" @ $TorqueScriptFileExtension @ "ed;
%parent = %parentScripted;
%tooltip = %tooltip NL "Declared in: " @ %fileName @ ":" @ %lineNumber;
}
else