Skip to content
This repository has been archived by the owner on Jul 11, 2018. It is now read-only.

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroliu committed Aug 24, 2015
1 parent 44db1ff commit 77abaf7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions SimpleAuthHelper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,4 @@ are kicked and any new joins are not allowed.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.

2 changes: 1 addition & 1 deletion libcommon/src/aliuly/common/BasicPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function registerSCmd($cmd,$callable,$opts) {
if ($this->scmdMap === null) {
$this->scmdMap = new SubCommandMap();
}
$this->scmdMap->registerSCmd($cmd,$callable,$opts)
$this->scmdMap->registerSCmd($cmd,$callable,$opts);
}
/**
* Get a player state for the desired module/$label.
Expand Down
2 changes: 1 addition & 1 deletion libcommon/src/aliuly/common/CmdSelector.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace aliuly\common;

use aliuly\grabbag\common\mc;
use aliuly\common\mc;

use aliuly\common\selectors\All;
use aliuly\common\selectors\AllEntity;
Expand Down
2 changes: 1 addition & 1 deletion libcommon/src/aliuly/common/SubCommandMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function getCommandCount() {
/**
* Dispatch commands using sub command table
*/
protected function dispatchSCmd(CommandSender $sender,Command $cmd,array $args,$data=null) {
public function dispatchSCmd(CommandSender $sender,Command $cmd,array $args,$data=null) {
if (count($args) == 0) {
$sender->sendMessage(mc::_("No sub-command specified"));
return false;
Expand Down

0 comments on commit 77abaf7

Please sign in to comment.