SLEEVES: fix typo in MoneySourceTracker call (#405)

This commit is contained in:
zerbosh
2023-03-03 07:03:09 +01:00
committed by GitHub
parent a01da24c10
commit 14aafbe0a3

View File

@ -24,7 +24,7 @@ export function TravelModal(props: IProps): React.ReactElement {
dialogBoxCreate("You cannot afford to have this sleeve travel to another city");
}
props.sleeve.city = city as CityName;
Player.loseMoney(CONSTANTS.TravelCost, "sleeve");
Player.loseMoney(CONSTANTS.TravelCost, "sleeves");
props.sleeve.stopWork();
props.rerender();
props.onClose();