2021-05-17 22:46:44 +00:00
|
|
|
accessing
|
2022-07-23 01:18:11 +00:00
|
|
|
populateAbilities: abilitiesArray
|
2021-05-17 22:46:44 +00:00
|
|
|
|
|
|
|
| enabled disabled |
|
2022-07-23 01:18:11 +00:00
|
|
|
enabled := abilitiesArray select: [ :abi | (abi at: 'Enabled') = true ].
|
|
|
|
disabled := abilitiesArray select: [ :abi | (abi at: 'Enabled') = false ].
|
2021-05-17 22:46:44 +00:00
|
|
|
^ self abilities
|
2022-07-23 01:18:11 +00:00
|
|
|
at: 'enabled' put: (enabled collect: [:abi |
|
|
|
|
(WikiText new content: (abi at: 'Text')) convertMarkdownLinks ]);
|
|
|
|
at: 'disabled' put: (disabled collect: [:abi |
|
|
|
|
(WikiText new content: (abi at: 'Text')) convertMarkdownLinks ]);
|
2021-05-17 22:46:44 +00:00
|
|
|
yourself.
|