Skip to content

Fix royalroad

Clocks requested to merge github/fork/khonkhortisan/royalroad-search-1 into dev

Created by: khonkhortisan

  1. Fixed the confusion between MultiTriQuery and MultiTryQuery.
  2. Lua arrays don't know how to count.
  3. TAGS_FILTER_INT was missing 3 tags.
arr = {
	[10] = 10,
	11,
	12,
}

is actually

arr = {
	[10] = 10,
	[1] = 11,
	[2] = 12,
}

Merge request reports