diff options
author | ubq323 <ubq323@ubq323.website> | 2025-06-10 12:20:12 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2025-06-10 12:20:12 +0100 |
commit | e0a9f5bb0bb3439d224eddca218fe2c937355f2e (patch) | |
tree | 975a39221d05bf9deb71accf341f8babf64f7ecd | |
parent | be3b1cfb0f551f582e656740639bc7c378f71ab1 (diff) |
change default name
-rw-r--r-- | client/menu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu.lua b/client/menu.lua index 9ae1fb9..8673217 100644 --- a/client/menu.lua +++ b/client/menu.lua @@ -17,7 +17,7 @@ local function c(...) return {love.math.colorFromBytes(...)} end local colors = { c(255,64,64), c(255,128,0), c(192,192,64), c(0,192,0), c(0,192,192), c(64,64,255), c(192,0,192), c(128,128,128)} -local state = {color=1,focused=nil,name='Susan',errmsg=nil} +local state = {color=1,focused=nil,name='',errmsg=nil} local rstate = love.filesystem.read'menu.json' if rstate then for k,v in pairs(json.decode(rstate)) do state[k]=v end end |