Fixed bug with rm terminal and ns commands that made non-exe files with .exe in their name undeletable.

This commit is contained in:
Mason Dechaineux
2019-02-25 07:20:56 +10:00
committed by danielyxie
parent e6a3794849
commit 67d083772a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2261,7 +2261,7 @@ function NetscriptFunctions(workerScript) {
throw makeRuntimeRejectMsg(workerScript, `Invalid server specified for rm(): ${ip}`);
}
if (fn.includes(".exe")) {
if (fn.endsWith(".exe")) {
for (var i = 0; i < s.programs.length; ++i) {
if (s.programs[i] === fn) {
s.programs.splice(i, 1);