Copies the contents of the SizeFacet from one Player Character to another Player Character, based on the given CharIDs representing those Player Characters. This is a method in SizeFacet in order to avoid exposing the mutable SizeFacetInfo object to other classes. This should not be inlined, as Siz
(CharID source, CharID copy)
| 456 | * information should be copied |
| 457 | */ |
| 458 | @Override |
| 459 | public void copyContents(CharID source, CharID copy) |
| 460 | { |
| 461 | SizeFacetInfo si = getInfo(source); |
| 462 | if (si != null) |
| 463 | { |
| 464 | SizeFacetInfo copysfi = getConstructingInfo(copy); |
| 465 | copysfi.racialSizeInt = si.racialSizeInt; |
| 466 | copysfi.sizeAdj = si.sizeAdj; |
| 467 | } |
| 468 | } |
| 469 | } |
nothing calls this directly
no test coverage detected