diff options
Diffstat (limited to 'ShiftOS-TheRevival/API/TerminalAPI.vb')
| -rw-r--r-- | ShiftOS-TheRevival/API/TerminalAPI.vb | 37 |
1 files changed, 23 insertions, 14 deletions
diff --git a/ShiftOS-TheRevival/API/TerminalAPI.vb b/ShiftOS-TheRevival/API/TerminalAPI.vb index d40e2cc..26b1179 100644 --- a/ShiftOS-TheRevival/API/TerminalAPI.vb +++ b/ShiftOS-TheRevival/API/TerminalAPI.vb @@ -309,21 +309,25 @@ Module TerminalAPI Case "shutdown", "shut down" TerminateShiftOS() Case "startg" - If Strings.AvailableFeature(35) = 1 Then - If IsStartG = False Then - StartG() - AdvancedCommand = False - NormalCommand() - End If - End If + NormalCommand() + Undeveloped() + 'If Strings.AvailableFeature(35) = 1 Then + ' If IsStartG = False Then + ' StartG() + ' AdvancedCommand = False + ' NormalCommand() + ' End If + 'End If Case "stopg" - If Strings.AvailableFeature(35) = 1 Then - If IsStartG = True Then - StopG() - AdvancedCommand = False - NormalCommand() - End If - End If + NormalCommand() + Undeveloped() + 'If Strings.AvailableFeature(35) = 1 Then + ' If IsStartG = True Then + ' StopG() + ' AdvancedCommand = False + ' NormalCommand() + ' End If + 'End If Case "textpad" If Strings.AvailableFeature(17) = "1" Then TextPad_WarnFile() @@ -402,6 +406,11 @@ Module TerminalAPI Infobar() End If End If + If command Like "lang *" Then + Lang() + AdvancedCommand = False + NormalCommand() + End If If command Like "taskkill *" Then Taskkill() AdvancedCommand = False |
