Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
wootguy committed Jul 6, 2020
1 parent 5033f28 commit 270e0bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ghosts.as
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class PlayerWithState {
void PluginInit()
{
g_Module.ScriptInfo.SetAuthor( "w00tguy" );
g_Module.ScriptInfo.SetContactInfo( "something something github" );
g_Module.ScriptInfo.SetContactInfo( "https://github.com/wootguy/ghosts" );

g_Hooks.RegisterHook( Hooks::Player::ClientSay, @ClientSay );
g_Hooks.RegisterHook( Hooks::Player::PlayerEnteredObserver, @PlayerEnteredObserver );
Expand Down Expand Up @@ -428,7 +428,7 @@ void doCommand(CBasePlayer@ plr, const CCommand@ args, bool inConsole) {
if (args.ArgC() >= 2)
{
if (args[1] == "version") {
g_PlayerFuncs.SayText(plr, "ghosts plugin v2 WIP\n");
g_PlayerFuncs.SayText(plr, "ghosts plugin v2\n");
}
else if (args[1] == "model" && args.ArgC() >= 3) {
int newMode = atoi(args[2]);
Expand Down

0 comments on commit 270e0bb

Please sign in to comment.