Rename credits to spacebucks & integrate with cargo (#9119)

This commit is contained in:
Kara
2022-06-24 07:43:44 -07:00
committed by GitHub
parent 5e8f3037c6
commit 732400e0f6
8 changed files with 16 additions and 20 deletions

View File

@@ -68,11 +68,11 @@ public sealed class PricingSystem : EntitySystem
mostValuable.Pop();
});
shell.WriteLine($"Grid {gid} appraised to {value} credits.");
shell.WriteLine($"Grid {gid} appraised to {value} spacebucks.");
shell.WriteLine($"The top most valuable items were:");
foreach (var (price, ent) in mostValuable)
{
shell.WriteLine($"- {ToPrettyString(ent)} @ {price} credits");
shell.WriteLine($"- {ToPrettyString(ent)} @ {price} spacebucks");
}
}
}