Update move.ts comment fix

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Bertie690 2025-01-16 21:34:00 -05:00 committed by GitHub
parent 4526a5b1b3
commit 22c6e449b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1380,9 +1380,10 @@ export class UserHpDamageAttr extends FixedDamageAttr {
} }
export class TargetHalfHpDamageAttr extends FixedDamageAttr { export class TargetHalfHpDamageAttr extends FixedDamageAttr {
/** the initial amount of hp the target had before the first hit; /**
used for multi lens hp cutting * The initial amount of hp the target had before the first hit.
*/ * Used for calculating multi lens damage.
*/
private initialHp: number; private initialHp: number;
constructor() { constructor() {
super(0); super(0);