Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
- call function prevented program from running
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsdayrs committed Jan 18, 2020
1 parent e0e116c commit c16d8d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class LuaFormatter(val luaObject: LuaValue) : ScrapeFormat(luaObject.get("getID"
//TODO Check if script has a function
val missings: ArrayList<String> = ArrayList()
for (key in keys) {
if (luaObject.get(key).call() == null) {
if (luaObject.get(key) == null) {
missings.add(key)
}
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.doomsdayrs.api</groupId>
<artifactId>shosetsu-services</artifactId>
<version>0.2.7-lua</version>
<version>0.2.8-lua</version>

<properties>
<kotlin.version>1.3.61</kotlin.version>
Expand Down

0 comments on commit c16d8d9

Please sign in to comment.