diff options
author | cheapie <no-email-for-you@example.com> | 2016-05-17 22:34:54 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2016-05-17 22:34:54 -0500 |
commit | 726e84c2c51c1f8a9e0db98ce13f2cd3d30d5c74 (patch) | |
tree | 3fe0b41e13137ce5962dcd37b9f0494f0c26a7d0 | |
parent | aacbeeb6edc03664d98d51698b099c945a27dac7 (diff) | |
download | newplayer-726e84c2c51c1f8a9e0db98ce13f2cd3d30d5c74.tar newplayer-726e84c2c51c1f8a9e0db98ce13f2cd3d30d5c74.tar.gz newplayer-726e84c2c51c1f8a9e0db98ce13f2cd3d30d5c74.tar.bz2 newplayer-726e84c2c51c1f8a9e0db98ce13f2cd3d30d5c74.tar.xz newplayer-726e84c2c51c1f8a9e0db98ce13f2cd3d30d5c74.zip |
Fix an extra escaped colon
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ function newplayer.showrulesform(name) "button[1,9;2,1;yes;I agree]".. "button[5,9;2,1;no;I do not agree]" if newplayer.keyword then - form_nointeract = form_nointeract.."field[0.25,8;8,1;keyword;Enter keyword from rules above\:;]" + form_nointeract = form_nointeract.."field[0.25,8;8,1;keyword;Enter keyword from rules above:;]" end local hasinteract = minetest.check_player_privs(name,{interact=true}) if hasinteract then |