Skip to content

Commit

Permalink
Fix formatting, add missing mkdocs.yml entry (#75)
Browse files Browse the repository at this point in the history
Fix formatting, add mkdocs.yml entry
  • Loading branch information
jcr4990 authored Nov 14, 2024
1 parent cf75052 commit 33c3450
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/client/guides/rename-race.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Whether you just want to rename one of the existing playable races, or you plan

You will need to locate and update the appropriate fields in your db_str table. The `id` field will be the race id you want to change, type 8 is the race description seen on the character create screen, type 11 is race name, type 12 is plural race name. Using my example above I would do something like this:

`UPDATE db_str SET value='Zombie' WHERE id=522 AND type IN (11, 12);`
`UPDATE db_str SET value='Insert Zombie race description here' WHERE id=522 AND type=8`
- `UPDATE db_str SET value='Zombie' WHERE id=522 AND type IN (11, 12);`
- `UPDATE db_str SET value='Insert Zombie race description here' WHERE id=522 AND type=8`


## Update eqstr_us.txt
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -783,6 +783,7 @@ nav:
- Model Loading: client/guides/model-loading.md
- Placing Objects: client/guides/placing-objects.md
- Sky System: client/guides/sky-system.md
- Renaming Playable Race: client/guides/rename-race.md
- OpenZone:
- client/openzone/README.md
- NPC Editing: client/openzone/npc-editing.md
Expand Down

0 comments on commit 33c3450

Please sign in to comment.