mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-22 18:46:06 +02:00
Renamed some funcs, and fleshed out a ton on man0l1. Various related things were also added.
This commit is contained in:
parent
0ac53e23ad
commit
9f077190a3
20 changed files with 225 additions and 190 deletions
|
@ -109,6 +109,16 @@ namespace Meteor.Map.Actors
|
|||
return 0;
|
||||
}
|
||||
|
||||
public virtual bool IsPublic()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public virtual bool IsPrivate()
|
||||
{
|
||||
return !IsPublic();
|
||||
}
|
||||
|
||||
public override SubPacket CreateScriptBindPacket()
|
||||
{
|
||||
List<LuaParam> lParams;
|
||||
|
|
|
@ -52,6 +52,11 @@ namespace Meteor.Map.actors.area
|
|||
return PrivateAreaType;
|
||||
}
|
||||
|
||||
public override bool IsPublic()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public Zone GetParentZone()
|
||||
{
|
||||
return ParentZone;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue