MISC: Update error message when backdooring without admin rights (#2435)

This commit is contained in:
Cica
2025-12-27 18:48:55 +01:00
committed by GitHub
parent 4218b01dfb
commit 3663b4507f

View File

@@ -20,7 +20,7 @@ export function backdoor(args: (string | number | boolean)[], server: BaseServer
return;
}
if (!server.hasAdminRights) {
Terminal.error("You do not have admin rights for this machine");
Terminal.error("You do not have admin rights for this machine!");
return;
}
if (server.requiredHackingSkill > Player.skills.hacking) {