Browse Source

fixed: 语法兼容

gwang 4 years ago
parent
commit
3eaedd4941
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Gameserver/Amfphp/model/User/Enum_EventActionType.php

+ 3 - 3
Gameserver/Amfphp/model/User/Enum_EventActionType.php

@@ -11,16 +11,16 @@ class Enum_EventActionType extends Enum {
     /**
      * 触发场景剧情:场景id,剧情stage id
      */
-    public const StartPlotScene = 101;
+    const StartPlotScene = 101;
 
     /**
      * 触发NPC对话剧情: NPCid,剧情stage id
      */
-    public const StartPlotNPC = 102;
+    const StartPlotNPC = 102;
 
     /**
      * 解锁建筑:建筑id
      */
-    public const UnlockBuild = 103;
+    const UnlockBuild = 103;
 
 }