From 1e4c372bdd75b16e3bd0df93c7c285f85161838f Mon Sep 17 00:00:00 2001 From: Cameron Moon Date: Mon, 25 Feb 2013 15:34:32 +1100 Subject: [PATCH] Changed all instances of Enlightenment to Enlightened --- README.md | 2 +- USERGUIDE.md | 2 +- code/game_status.js | 2 +- plugins/guess-player-levels.user.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2dde6289..68662e92 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Contributing Please do! -(Obviously, Resistance folks must send in complete patches while Enlightenment gals and guys may just open feature request ☺). If you want to hack the source, please [read HACKING.md for details](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/HACKING.md) . +(Obviously, Resistance folks must send in complete patches while Enlightened gals and guys may just open feature request ☺). If you want to hack the source, please [read HACKING.md for details](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/HACKING.md) . **So far, these people have contributed:** diff --git a/USERGUIDE.md b/USERGUIDE.md index c345ab4b..c495edef 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -33,7 +33,7 @@ The chat is split up into several categories. It usually only shows messages for **The chat categories are:** - full: shows all automated messages *(23:57 \ destroyed an L3 Resonator on Two Spikes)* - compact: shows only the latest automated message per user -- public: shows user generated public messages (both Enlightenment and Resistance can read it) +- public: shows user generated public messages (both Enlightened and Resistance can read it) - faction: shows messages for own faction (e.g. only Resistance can read Resistance messages) **Posting messages:** diff --git a/code/game_status.js b/code/game_status.js index fe29b868..907d76e3 100644 --- a/code/game_status.js +++ b/code/game_status.js @@ -15,7 +15,7 @@ window.updateGameScore = function(data) { var es = ' '+Math.round(ep)+'%'; $('#gamestat').html(rs+es).one('click', function() { window.updateGameScore() }); // help cursor via “#gamestat span” - $('#gamestat').attr('title', 'Resistance:\t'+r+' MindUnits\nEnlightenment:\t'+e+' MindUnits'); + $('#gamestat').attr('title', 'Resistance:\t'+r+' MindUnits\nEnlightened:\t'+e+' MindUnits'); window.setTimeout('window.updateGameScore', REFRESH_GAME_SCORE*1000); } diff --git a/plugins/guess-player-levels.user.js b/plugins/guess-player-levels.user.js index e8249042..6d987894 100644 --- a/plugins/guess-player-levels.user.js +++ b/plugins/guess-player-levels.user.js @@ -88,7 +88,7 @@ window.plugin.guessPlayerLevels.guess = function() { }); var s = 'the players have at least the following level:\n\n'; - s += 'Resistance:\t   \tEnlightenment:\t\n'; + s += 'Resistance:\t   \tEnlightened:\t\n'; var namesR = plugin.guessPlayerLevels.sort(playersRes); var namesE = plugin.guessPlayerLevels.sort(playersEnl);