Skip to content

Commit

Permalink
Fix more remaining license info
Browse files Browse the repository at this point in the history
  • Loading branch information
szapp committed Nov 28, 2016
1 parent 4eeae08 commit 0caf5e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ above).
intersection. This should only be useful if the underlying g2freeAim mechanics are modified (which is not
recommended).
5. Additional information about the selected settings of g2freeAim can be displayed in the console by the commands
- `freeaim version` displays the current version of g2freeAim, e.g. "G2 Free Aim v0.1.0"
- `freeaim version` displays the current version of g2freeAim, e.g. "G2 Free Aim v0.1.1"
- `freeaim license` displays the license information of g2freeAim
- `freeaim info` displays the settings of g2freeAim
- Whether free aiming is enabled
Expand Down
4 changes: 2 additions & 2 deletions _work/data/Scripts/Content/freeAim/_intern.d
Original file line number Diff line number Diff line change
Expand Up @@ -1115,8 +1115,8 @@ func string freeAimLicense(var string command) {
var int s; s = SB_New();
SB(FREEAIM_VERSION); SB(", Copyright "); SBc(169 /* (C) */); SB(" 2016 mud-freak (@szapp)"); SBc(13); SBc(10);
SB("<http://github.com/szapp/g2freeAim>"); SBc(13); SBc(10);
SB("Released under the GNU General Public License."); SBc(13); SBc(10);
SB("For more details see <http://www.gnu.org/licenses/>."); SBc(13); SBc(10);
SB("Released under the MIT License."); SBc(13); SBc(10);
SB("For more details see <http://opensource.org/licenses/MIT>."); SBc(13); SBc(10);
var string ret; ret = SB_ToString(); SB_Destroy();
return ret;
};
Expand Down

0 comments on commit 0caf5e8

Please sign in to comment.