우선 순위를 오름차순으로 변경

This commit is contained in:
2018-10-02 00:11:27 +09:00
parent 34fd000df9
commit 5565ec2ddb
2 changed files with 13 additions and 19 deletions
+5 -5
View File
@@ -2,12 +2,12 @@
namespace sammo;
abstract class ObjectTrigger{
const PRIORITY_MAX = 99999;
const PRIORITY_BEGIN = 50000;
const PRIORITY_PRE = 40000;
const PRIORITY_MIN = 0;
const PRIORITY_BEGIN = 10000;
const PRIORITY_PRE = 20000;
const PRIORITY_BODY = 30000;
const PRIORITY_POST = 20000;
const PRIORITY_FINAL = 10000;
const PRIORITY_POST = 40000;
const PRIORITY_FINAL = 50000;
static protected $priority;
protected $object = null;