5 lines
221 B
Lua
5 lines
221 B
Lua
|
|
--This provides wrappers to prevent themes that used functions that are now unavailable from crashing.
|
||
|
|
|
||
|
|
Scoring={}
|
||
|
|
|
||
|
|
setmetatable(Scoring,{__index=function() return function() Log("Lua scoring unimplemented") end end})
|