forked from rojo-rbx/rojo
Sync reminder notification & notification actions (#689)
Implements and closes #652. --------- Co-authored-by: Chris Chang <51393127+chriscerie@users.noreply.github.com> Co-authored-by: Micah <git@dekkonot.com>
This commit is contained in:
27
plugin/src/ignorePlaceIds.lua
Normal file
27
plugin/src/ignorePlaceIds.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
--[[
|
||||
These are place ids that will not have metadata saved for them,
|
||||
such as last sync address or time. This is because they are not unique
|
||||
so storing metadata for them does not make sense as these ids are reused.
|
||||
--]]
|
||||
|
||||
return {
|
||||
["0"] = true, -- Local file
|
||||
["95206881"] = true, -- Baseplate
|
||||
["6560363541"] = true, -- Classic Baseplate
|
||||
["95206192"] = true, -- Flat Terrain
|
||||
["13165709401"] = true, -- Modern City
|
||||
["520390648"] = true, -- Village
|
||||
["203810088"] = true, -- Castle
|
||||
["366130569"] = true, -- Suburban
|
||||
["215383192"] = true, -- Racing
|
||||
["264719325"] = true, -- Pirate Island
|
||||
["203812057"] = true, -- Obby
|
||||
["379736082"] = true, -- Starting Place
|
||||
["301530843"] = true, -- Line Runner
|
||||
["92721754"] = true, -- Capture The Flag
|
||||
["301529772"] = true, -- Team/FFA Arena
|
||||
["203885589"] = true, -- Combat
|
||||
["10275826693"] = true, -- Concert
|
||||
["5353920686"] = true, -- Move It Simulator
|
||||
["6936227200"] = true, -- Mansion Of Wonder
|
||||
}
|
||||
Reference in New Issue
Block a user