Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct spelling errors in scenario_20_training1 and the science database #2152

Merged
merged 1 commit into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scripts/scenario_20_training1.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
-- Name: Training: Cruiser
-- Type: Basic
-- Description: Basic Training Cource
-- Description: Basic Training Course
---
--- Objective: Destroy all enemy ships in the area.
---
--- Description:
--- During this training your will learn to coordinate the actions of your crew and destoy an Exuari training ground.
--- During this training you will learn to coordinate the actions of your crew and destroy an Exuari training ground.
---
--- Your ship is a Phobos light cruiser - the most common vessel in the navy.
---
Expand Down Expand Up @@ -78,9 +78,9 @@ function commsInstr()
instr1 = true
command:sendCommsMessage(player, _("goal-incCall", [[This is Commander Saberhagen.

In this training mission you will practice the basic controls of a Phobos light cruiser.
In this training mission, you will practice the basic controls of a Phobos light cruiser.
Since this is not a tutorial, you will be on your own to decide how to destroy all enemy targets in an Exuari training ground.
There will be not much resistance, so you can try different approaches and tactics savely.
There will be not much resistance, so you can try different approaches and tactics safely.

Here's your chance to beat up some helpless opponents.
Commander Saberhagen out.]]))
Expand Down Expand Up @@ -119,7 +119,7 @@ function update(delta)
table.remove(enemyList, i)
-- Note: table.remove() inside iteration causes the next element to be skipped.
-- This means in each update-cycle max half of the elements are removed.
-- It does not matter here, since update is called regulary.
-- It does not matter here, since update is called regularly.
end
end
if #enemyList == 0 then
Expand Down
2 changes: 1 addition & 1 deletion scripts/science_db.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ space_objects:setLongDescription(_([[This database covers naturally occurring ph
While ship captains are encouraged to avoid unnecessary interactions with these phenomena, knowing their properties can offer an advantage in conflicts near them.]]))

item = space_objects:addEntry(_('Asteroid'))
item:setLongDescription(_([[An asteroid is a minor planet, usually smaller than a few kilometers. Larger variants are sometimes refered to as planetoids.]]))
item:setLongDescription(_([[An asteroid is a minor planet, usually smaller than a few kilometers. Larger variants are sometimes referred to as planetoids.]]))

item = space_objects:addEntry(_('Black hole'))
item:setLongDescription(_([[A black hole is a point of supercondensed mass with a gravitational pull so powerful that not even light can escape it. It has no locally detectable features, and can only be seen indirectly by blocking the view and distorting its surroundings, creating a strange circular mirror image of the galaxy. The black disc in the middle marks the event horizon, the boundary where even light can't escape it anymore.
Expand Down
Loading