Skip to content
Snippets Groups Projects
Commit 49fec76c authored by svornost's avatar svornost
Browse files

JSDoc fixes

parent fb27e528
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ App.Entity.CustomSlaveOrder = class CustomSlaveOrder {
/** desired skills rating (.whore controls both whoring and entertainment, .combat controls combat)
* Values as in SlaveState.
* @type {Object.<number, number>}
* @type {Object.<string, number>}
*/
this.skill = {whore: 15, combat: 0};
......@@ -156,12 +156,12 @@ App.Entity.CustomSlaveOrder = class CustomSlaveOrder {
this.nationality = "Stateless";
/** desired left and right leg state
* @type {Object.<App.Entity.LimbState, App.Entity.LimbState>}
* @type {{left: App.Entity.LimbState, right: App.Entity.LimbState}}
*/
this.leg = {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()};
/** desired left and right arm state
* @type {Object.<App.Entity.LimbState, App.Entity.LimbState>}
* @type {{left: App.Entity.LimbState, right: App.Entity.LimbState}}
*/
this.arm = {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment