Returns the SizeAdjustment active for the Player Character identified by the given CharID. @param id The CharID identifying the Player Character for which the SizeAdjustment will be returned @return The SizeAdjustment active for the Player Character identified by the g
(CharID id)
| 227 | * the given CharID |
| 228 | */ |
| 229 | @Override |
| 230 | public SizeAdjustment get(CharID id) |
| 231 | { |
| 232 | SizeFacetInfo info = getInfo(id); |
| 233 | return info == null ? SizeUtilities.getDefaultSizeAdjustment() : info.sizeAdj; |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Returns the abbreviation of the SizeAdjustment active for the Player |
no test coverage detected