property_has_default
Function Syntax
boolean property_has_default( string name )
- Checks if a property has a built-in default value.
- name: Property name
All properties in data/defaults.txt
have a default value.
This function was added in r17892.
Code Samples
Check if a property named autoBuyPriceLimit
has a default value, and if so, print it.
if ( property_has_default( "autoBuyPriceLimit" ) )
{
print( property_default_value( "autoBuyPriceLimit" ) );
}