mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2026-06-04 20:02:07 +00:00
Make error messages more consistent
This commit is contained in:
@@ -172,7 +172,7 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access Denied" );
|
||||
throw new FileSystemException( "Access denied" );
|
||||
}
|
||||
try
|
||||
{
|
||||
@@ -199,7 +199,7 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access Denied" );
|
||||
throw new FileSystemException( "Access denied" );
|
||||
}
|
||||
try
|
||||
{
|
||||
@@ -219,7 +219,7 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access Denied" );
|
||||
throw new FileSystemException( "Access denied" );
|
||||
}
|
||||
try
|
||||
{
|
||||
@@ -251,7 +251,7 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access Denied" );
|
||||
throw new FileSystemException( "Access denied" );
|
||||
}
|
||||
try
|
||||
{
|
||||
|
||||
@@ -310,7 +310,7 @@ local function accessMenu()
|
||||
-- Select an option
|
||||
if mChoices[selection]=="Save" then
|
||||
if bReadOnly then
|
||||
fMessage = "Access Denied"
|
||||
fMessage = "Access denied"
|
||||
return false
|
||||
end
|
||||
local success = save(sPath)
|
||||
|
||||
Reference in New Issue
Block a user