Skip to content

Commit

Permalink
Update functions.nut
Browse files Browse the repository at this point in the history
- Changed console messages from "Anniversary" to "Community".
  • Loading branch information
Rayman1103 committed Oct 21, 2021
1 parent de9c0b3 commit ff5cbb5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions root/scripts/vscripts/community/functions.nut
Original file line number Diff line number Diff line change
Expand Up @@ -1801,7 +1801,7 @@ function con_comment( strComment )
** about "script ShowUpdate()" to see all changes.
**
** DEVELOPER MODE is required for everything here EXCEPT the "else if" condition
** which will ALWAYS announce "Anniversary Map Fixes" presence. The name "devchap"
** which will ALWAYS announce "Community Map Fixes" presence. The name "devchap"
** is derived from it being mostly for DEVELOPER MODE and printing chapter name.
*****************************************************************************/

Expand All @@ -1821,15 +1821,15 @@ function devchap( mode )

if ( developer() > 0 && mode == "TUTORIAL" )
{
printl( "Anniversary Map Fixes: Run or bind \"script ShowUpdate()\" and \"script HideUpdate()\"" );
printl( "Community Map Fixes: Run or bind \"script ShowUpdate()\" and \"script HideUpdate()\"" );
printl( "to draw new blockers and glow new props. They are named according to purpose and" );
printl( "you can see entity definitions above. If you make/delete \"mapfixes\"-prefixed" );
printl( "entities, toggle Hide/Show to apply changes. Please report all issues and concerns" );
printl( "to Tsuey's Workshop https://steamcommunity.com/sharedfiles/filedetails/?id=1959405608\n" );
}
else if ( mode == "TUTORIAL" )
{
printl( "Anniversary Map Fixes: Restart with Launch Option -dev to reveal verbose entity debug dumps." );
printl( "Anniversary Demo Mode: Run \"script_execute community/z_developer_showupdate\" >> \"script ShowUpdate()\"." );
printl( "Community Map Fixes: Restart with Launch Option -dev to reveal verbose entity debug dumps." );
printl( "Community Demo Mode: Run \"script_execute community/z_developer_showupdate\" >> \"script ShowUpdate()\"." );
}
}

0 comments on commit ff5cbb5

Please sign in to comment.