Skip to content

Commit

Permalink
Added further note about where the exceptions messages are put into t…
Browse files Browse the repository at this point in the history
…o except__
  • Loading branch information
X39 committed Nov 8, 2018
1 parent de0880e commit 7828baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/sqfvmcmds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,5 +266,5 @@ void sqf::commandmap::initsqfvmcmds()
add(nular("vm__", "Provides a list of all SQF-VM only commands.", vm___));
add(nular("respawn__", "'Respawns' the player object.", respawn___));
add(unary("preprocess__", sqf::type::STRING, "Runs the PreProcessor on provided string.", preprocess___string));
add(binary(4, "except__", sqf::type::CODE, sqf::type::CODE, "Allows to define a block that catches VM exceptions. It is to note, that this will also catch exceptions in spawn!", except___code_code));
add(binary(4, "except__", sqf::type::CODE, sqf::type::CODE, "Allows to define a block that catches VM exceptions. It is to note, that this will also catch exceptions in spawn! Exception will be put into the magic variable '_exception'.", except___code_code));
}

0 comments on commit 7828baf

Please sign in to comment.