Skip to content

Commit

Permalink
Minor changes to the debugger plugin connect message
Browse files Browse the repository at this point in the history
  • Loading branch information
T3chArmy committed Feb 19, 2016
1 parent 19f588f commit e2fbd4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/debugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class debugger extends Plugins
{
// Set our URL, Name, Author, Version, Description
const URL = '';
const NAME = 'Debugger';
const NAME = 'PRISM Debugger';
const AUTHOR = 'T3charmy';
const VERSION = '';
const DESCRIPTION = 'Use this plugin to send errors from PHP to your LFS server';
Expand Down Expand Up @@ -69,8 +69,8 @@ public function onPrismClose()
public function onPrismConnect(IS_VER $VER)
{
$this->conns[] = $this->getCurrentHostId();
IS_MTC()->UCID(255)->Text('^6> ^7'.debugger::NAME.' Version ^3'.debugger::VERSION.' ^7Has Connected.')->Send();
console(debugger::NAME.' Version '.debugger::VERSION.' Has Connected.');
IS_MTC()->UCID(255)->Text('^6> ^7'.debugger::NAME.' ^7Has Connected.')->Send();
console(debugger::NAME.' Has Connected.');
}

public function debugForceError($cmd, $ucid)
Expand Down

0 comments on commit e2fbd4f

Please sign in to comment.