Added filefix %LIST

This commit is contained in:
2024-11-26 12:44:21 +11:00
parent b67ae28b98
commit a161b8fc5e
4 changed files with 146 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ final class Filefix extends Robot
break;
// If command doesnt start with %, its an area
// If command doesnt start with %, its an area
} elseif (! str_starts_with($command[0],'%')) {
Log::info(sprintf('%s:= Assuming command [%s] is an AREA command',self::LOGKEY,$command[0]));
@@ -60,7 +60,7 @@ final class Filefix extends Robot
// Some commands are reserved words
switch ($x=strtolower(substr($command[0],1))) {
case 'list':
$class = self::commands.'FileList';
$class = self::commands.'AreaList';
break;
default: