几个全局变量名大写

This commit is contained in:
MrZ626
2020-11-09 23:23:47 +08:00
parent 2989067a55
commit 7b49053e6d
13 changed files with 32 additions and 32 deletions

View File

@@ -62,7 +62,7 @@ function restoreVirtualKey()
end
function copyQuestArgs()
local ENV=customEnv
local ENV=CUSTOMENV
local str=""..
(ENV.hold and"H"or"Z")..
(ENV.ospin and"O"or"Z")..
@@ -71,7 +71,7 @@ function copyQuestArgs()
return str
end
function pasteQuestArgs(str)
local ENV=customEnv
local ENV=CUSTOMENV
ENV.hold= byte(str,1)~=90
ENV.ospin= byte(str,2)~=90
ENV.missionKill= byte(str,3)~=90