27 lines
846 B
Diff
27 lines
846 B
Diff
From e160c86c1fac9fcc1336fd81c772af5ad588be1e Mon Sep 17 00:00:00 2001
|
|
From: Rachael Alexanderson <18584402+madame-rachelle@users.noreply.github.com>
|
|
Date: Sun, 19 Feb 2023 10:14:36 -0500
|
|
Subject: [PATCH 37/51] Update service.zs
|
|
|
|
remove erroneous semicolon
|
|
---
|
|
wadsrc/static/zscript/engine/service.zs | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/wadsrc/static/zscript/engine/service.zs b/wadsrc/static/zscript/engine/service.zs
|
|
index 50981ad80..26102b0a2 100644
|
|
--- a/wadsrc/static/zscript/engine/service.zs
|
|
+++ b/wadsrc/static/zscript/engine/service.zs
|
|
@@ -107,7 +107,7 @@ class ServiceIterator
|
|
while(it.Next())
|
|
{
|
|
String cName = it.GetKey();
|
|
- if(cName.MakeLower().IndexOf(mServiceName) != -1);
|
|
+ if(cName.MakeLower().IndexOf(mServiceName) != -1)
|
|
return it.GetValue();
|
|
}
|
|
return null;
|
|
--
|
|
2.39.3
|
|
|