Fixing a typo.

Well, I'll never code at midnight again...
Bu işleme şunda yer alıyor:
Ad5001 2017-11-09 22:48:14 +01:00 işlemeyi yapan: GitHub
ebeveyn c027a1712a
işleme 1bd147133c
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme

Dosyayı Görüntüle

@ -86,7 +86,7 @@ class Main extends PluginBase implements Listener {
foreach($commandsToExecute as $index => $cmd){
// Foreaching the returning commands to push them to the new commands to be executed at the next run.
foreach(self::$selectors[$matches[1][$index]]->applySelector($sender, $params) as $selectorStr){
if(strpos($selectorStr, " ") !== -1) $selectorStr = explore($selectorStr)[count(explode($selectorStr)) - 1]; // Name w/ spaces. Match the nearest name in the player. Not perfect :/
if(strpos($selectorStr, " ") !== -1) $selectorStr = explode($selectorStr)[count(explode($selectorStr)) - 1]; // Name w/ spaces. Match the nearest name in the player. Not perfect :/
$newCommandsToExecute[] = substr_replace($cmd, " " . $selectorStr . " ", strpos($cmd, $match), strlen($match));
}
if(count($newCommandsToExecute) == 0) {
@ -179,4 +179,4 @@ class Main extends PluginBase implements Listener {
public static function getSelector(string $selChar): Selector{
return self::$selectors[$selChar];
}
}
}