summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-12-09 18:38:07 +0000
committerfrosch <frosch@openttd.org>2013-12-09 18:38:07 +0000
commitab9be31562bb188710271f6a2d154504ccdbe45e (patch)
treeb6f4406d9e63d29966d887287779e4a71ea8bfd7 /src/script
parentc69c2a243b1ab0b99f879391e5dcb06c071a3ae7 (diff)
downloadopenttd-ab9be31562bb188710271f6a2d154504ccdbe45e.tar.xz
(svn r26153) -Doc [FS#5826]: Fix copy-pasty. (krinn)
Diffstat (limited to 'src/script')
-rw-r--r--src/script/api/script_story_page.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/api/script_story_page.hpp b/src/script/api/script_story_page.hpp
index d026650be..b98864e16 100644
--- a/src/script/api/script_story_page.hpp
+++ b/src/script/api/script_story_page.hpp
@@ -81,7 +81,7 @@ public:
* Create a new story page.
* @param company The company to create the story page for, or ScriptCompany::COMPANY_INVALID for all.
* @param title Page title (can be either a raw string, a ScriptText object, or null).
- * @return The new StoryPageID, or STORY_INVALID if it failed.
+ * @return The new StoryPageID, or STORY_PAGE_INVALID if it failed.
* @pre No ScriptCompanyMode may be in scope.
* @pre company == COMPANY_INVALID || ResolveCompanyID(company) != COMPANY_INVALID.
*/
@@ -93,7 +93,7 @@ public:
* @param type Which page element type to create.
* @param reference A reference value to the object that is refered to by some page element types. When type is SPET_GOAL, this is the goal ID. When type is SPET_LOCATION, this is the TileIndex.
* @param text The body text of page elements that allow custom text. (SPET_TEXT and SPET_LOCATION)
- * @return The new StoryPageID, or STORY_INVALID if it failed.
+ * @return The new StoryPageElementID, or STORY_PAGE_ELEMENT_INVALID if it failed.
* @pre No ScriptCompanyMode may be in scope.
* @pre IsValidStoryPage(story_page).
* @pre (type != SPET_TEXT && type != SPET_LOCATION) || (text != NULL && len(text) != 0).
@@ -108,7 +108,7 @@ public:
* @param story_page_element_id The page id of the story page which the page element should be appended to.
* @param reference A reference value to the object that is refered to by some page element types. See also NewElement.
* @param text The body text of page elements that allow custom text. See also NewElement.
- * @return The new StoryPageID, or STORY_INVALID if it failed.
+ * @return True if the action succeeded.
* @pre No ScriptCompanyMode may be in scope.
* @pre IsValidStoryPage(story_page).
* @pre (type != SPET_TEXT && type != SPET_LOCATION) || (text != NULL && len(text) != 0).