diff --git a/core/msvc8/sourcemod_mm.vcproj b/core/msvc8/sourcemod_mm.vcproj
index 396e3b41..03076cea 100644
--- a/core/msvc8/sourcemod_mm.vcproj
+++ b/core/msvc8/sourcemod_mm.vcproj
@@ -535,7 +535,7 @@
 				>
 			</File>
 			<File
-				RelativePath="..\sm_trie_tpl.h"
+				RelativePath="..\..\public\sm_trie_tpl.h"
 				>
 			</File>
 			<File
diff --git a/core/smn_console.cpp b/core/smn_console.cpp
index 4a2a4c2c..dff169b1 100644
--- a/core/smn_console.cpp
+++ b/core/smn_console.cpp
@@ -977,7 +977,14 @@ static cell_t CheckCommandAccess(IPluginContext *pContext, const cell_t *params)
 	char *cmd;
 	pContext->LocalToString(params[2], &cmd);
 
-	return g_ConCmds.CheckCommandAccess(params[1], cmd, params[3]) ? 1 : 0;
+	/* Support the newer version which will auto-check for an existing command. */
+	FlagBits bits = params[3];
+	if (params[0] == 4 && params[4])
+	{
+		g_ConCmds.LookForCommandAdminFlags(cmd, &bits);
+	}
+
+	return g_ConCmds.CheckCommandAccess(params[1], cmd, bits) ? 1 : 0;
 }
 
 REGISTER_NATIVES(consoleNatives)
diff --git a/plugins/include/console.inc b/plugins/include/console.inc
index d2f65b8c..27e9db97 100644
--- a/plugins/include/console.inc
+++ b/plugins/include/console.inc
@@ -640,12 +640,23 @@ native bool:ReadCommandIterator(Handle:iter,
 								descLen=0);
 
 /**
- * Returns whether a client has access to a command.  This takes into account
- * the override system built into SourceMod.
+ * Returns whether a client has access to a given command string.  The string 
+ * can also be any override string, as overrides can be independent of 
+ * commands.  This important feature essentially allows you to create custom 
+ * flags using the override system.
  *
  * @param client		Client index.
- * @param command		Command name.
- * @param flags			Default command flags.
+ * @param command		Command name.  If the command is not found, the default 
+ *						flags are used.
+ * @param flags			Flag string to use as a default, if the command or override 
+ *						is not found.
+ * @param override_only	If true, SourceMod will not attempt to find a matching 
+ *						command, and it will only use the default flags specified.
+ *						Otherwise, SourceMod will ignore the default flags if 
+ *						there is a matching admin command.
  * @return				True if the client has access, false otherwise.
  */
-native bool:CheckCommandAccess(client, const String:command[], flags);
+native bool:CheckCommandAccess(client, 
+							   const String:command[],
+							   flags,
+							   bool:override_only=false);