فهرست منبع

Fix table access

mingodad 9 سال پیش
والد
کامیت
f46e175d50
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      SquiLu-ourbiz/unify-code.nut

+ 1 - 1
SquiLu-ourbiz/unify-code.nut

@@ -7,7 +7,7 @@
 local included = {};
 
 function unify_code(fname){
-	if(table_get(included, fname, false)) return "";
+	if(table_rawget(included, fname, false)) return "";
 	else included[fname] <- true;
 	
 	local fd = file(fname, "r");