World.name

Gets the world's name used for identification and logging purposes. Children have the same name as their parent.

class World
final pure nothrow @property @safe @nogc
immutable(string)
name
()

Examples

if(!server.worldsWithName(world.name).canFind(world)) {
   log(world.name, " is not managed by the server");
}

Meta