Skip to content

Commit

Permalink
Minor typos in fallout base data.
Browse files Browse the repository at this point in the history
  • Loading branch information
burner1024 committed Mar 31, 2024
1 parent 23fbcd1 commit e14b99e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions server/data/fallout-ssl-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,15 +217,15 @@ base-functions:
doc: |-
Returns True if the system is currently in combat mode, False otherwise.
- name: create_object
detail: ObjectPtr create_object(int pid, int tile_num, int elev
detail: ObjectPtr create_object(int pid, int tile_num, int elev)
doc: |-
Creates a new object of prototype (pid), placing it at a given tile number and at a given elevation (0-2). If the prototype indicates a script should be attached, then it will be.
- name: create_object_sid
detail: ObjectPtr create_object_sid(int pid, int tile_num, int elev, int sid
detail: ObjectPtr create_object_sid(int pid, int tile_num, int elev, int sid)
doc: |-
Creates a new object of prototype (pid), placing it at a given tile # and at a given elevation (0-2). If sid is not -1, then it indicates that the default script should be overriden by this new script #.
- name: critter_add_trait
detail: int critter_add_trait(ObjectPtr who, int trait_type, int trait, int amount
detail: int critter_add_trait(ObjectPtr who, int trait_type, int trait, int amount)
doc: |-
Adds a particular trait (trait) of a given type (trait_type) to a particular critter (who). Possible traits under the SPECIAL system are limited to Perks, Traits, Object-instance information (such as team #'s, ai-packet #'s, etc.)
- name: critter_attempt_placement
Expand Down
6 changes: 3 additions & 3 deletions server/out/completion.fallout-ssl.json
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@
"source": "builtin",
"documentation": {
"kind": "markdown",
"value": "```fallout-ssl-tooltip\nObjectPtr create_object(int pid, int tile_num, int elev\n```\nCreates a new object of prototype (pid), placing it at a given tile number and at a given elevation (0-2). If the prototype indicates a script should be attached, then it will be."
"value": "```fallout-ssl-tooltip\nObjectPtr create_object(int pid, int tile_num, int elev)\n```\nCreates a new object of prototype (pid), placing it at a given tile number and at a given elevation (0-2). If the prototype indicates a script should be attached, then it will be."
}
},
{
Expand All @@ -471,7 +471,7 @@
"source": "builtin",
"documentation": {
"kind": "markdown",
"value": "```fallout-ssl-tooltip\nObjectPtr create_object_sid(int pid, int tile_num, int elev, int sid\n```\nCreates a new object of prototype (pid), placing it at a given tile # and at a given elevation (0-2). If sid is not -1, then it indicates that the default script should be overriden by this new script #."
"value": "```fallout-ssl-tooltip\nObjectPtr create_object_sid(int pid, int tile_num, int elev, int sid)\n```\nCreates a new object of prototype (pid), placing it at a given tile # and at a given elevation (0-2). If sid is not -1, then it indicates that the default script should be overriden by this new script #."
}
},
{
Expand All @@ -480,7 +480,7 @@
"source": "builtin",
"documentation": {
"kind": "markdown",
"value": "```fallout-ssl-tooltip\nint critter_add_trait(ObjectPtr who, int trait_type, int trait, int amount\n```\nAdds a particular trait (trait) of a given type (trait_type) to a particular critter (who). Possible traits under the SPECIAL system are limited to Perks, Traits, Object-instance information (such as team #'s, ai-packet #'s, etc.)"
"value": "```fallout-ssl-tooltip\nint critter_add_trait(ObjectPtr who, int trait_type, int trait, int amount)\n```\nAdds a particular trait (trait) of a given type (trait_type) to a particular critter (who). Possible traits under the SPECIAL system are limited to Perks, Traits, Object-instance information (such as team #'s, ai-packet #'s, etc.)"
}
},
{
Expand Down
6 changes: 3 additions & 3 deletions server/out/hover.fallout-ssl.json
Original file line number Diff line number Diff line change
Expand Up @@ -260,19 +260,19 @@
"create_object": {
"contents": {
"kind": "markdown",
"value": "```fallout-ssl-tooltip\nObjectPtr create_object(int pid, int tile_num, int elev\n```\nCreates a new object of prototype (pid), placing it at a given tile number and at a given elevation (0-2). If the prototype indicates a script should be attached, then it will be."
"value": "```fallout-ssl-tooltip\nObjectPtr create_object(int pid, int tile_num, int elev)\n```\nCreates a new object of prototype (pid), placing it at a given tile number and at a given elevation (0-2). If the prototype indicates a script should be attached, then it will be."
}
},
"create_object_sid": {
"contents": {
"kind": "markdown",
"value": "```fallout-ssl-tooltip\nObjectPtr create_object_sid(int pid, int tile_num, int elev, int sid\n```\nCreates a new object of prototype (pid), placing it at a given tile # and at a given elevation (0-2). If sid is not -1, then it indicates that the default script should be overriden by this new script #."
"value": "```fallout-ssl-tooltip\nObjectPtr create_object_sid(int pid, int tile_num, int elev, int sid)\n```\nCreates a new object of prototype (pid), placing it at a given tile # and at a given elevation (0-2). If sid is not -1, then it indicates that the default script should be overriden by this new script #."
}
},
"critter_add_trait": {
"contents": {
"kind": "markdown",
"value": "```fallout-ssl-tooltip\nint critter_add_trait(ObjectPtr who, int trait_type, int trait, int amount\n```\nAdds a particular trait (trait) of a given type (trait_type) to a particular critter (who). Possible traits under the SPECIAL system are limited to Perks, Traits, Object-instance information (such as team #'s, ai-packet #'s, etc.)"
"value": "```fallout-ssl-tooltip\nint critter_add_trait(ObjectPtr who, int trait_type, int trait, int amount)\n```\nAdds a particular trait (trait) of a given type (trait_type) to a particular critter (who). Possible traits under the SPECIAL system are limited to Perks, Traits, Object-instance information (such as team #'s, ai-packet #'s, etc.)"
}
},
"critter_attempt_placement": {
Expand Down

0 comments on commit e14b99e

Please sign in to comment.