MISC: Remove mention of re-sleeving (#1399)

This commit is contained in:
catloversg
2024-06-16 06:36:32 +07:00
committed by GitHub
parent ceb58bc6b3
commit 7a39a93fa9
3 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ export enum LocationType {
Gym = "Gym",
Hospital = "Hospital",
Slums = "Slums",
Special = "Special", // This location has special options/activities (e.g. Bladeburner, Re-sleeving)
Special = "Special", // This location has special options/activities (e.g., Bladeburner, Grafting, etc.)
StockMarket = "Stock Market",
TechVendor = "Tech Vendor",
TravelAgency = "Travel Agency",
+2 -2
View File
@@ -4,7 +4,7 @@
*
* Examples:
* - Bladeburner @ NSA
* - Re-sleeving @ VitaLife
* - Grafting @ VitaLife
* - Create Corporation @ City Hall
*
* This subcomponent creates all of the buttons for interacting with those special
@@ -69,7 +69,7 @@ export function SpecialLocation(props: SpecialLocationProps): React.ReactElement
}
}
/** Click handler for Resleeving button at New Tokyo VitaLife */
/** Click handler for Secret lab button at New Tokyo VitaLife */
function handleGrafting(): void {
Router.toPage(Page.Grafting);
}