Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Fix raid notice cannot clear
Browse files Browse the repository at this point in the history
  • Loading branch information
elct9620 committed Aug 12, 2019
1 parent 8494e01 commit 107d3ac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile-client
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ RUN patch -p0 < patches/import_csv_data.rb.patch \
# For direct test game
&& patch -p0 < patches/disable_encrypt.patch \
# For compile client with SQLite
&& patch -p0 < patches/compile/create_const_data.rb.patch
&& patch -p0 < patches/compile/create_const_data.rb.patch \
&& patch -p0 < patches/compile/ProfoundNoticePanel.as.patch

# Add user customize content
ADD customize/ /app
Expand Down
11 changes: 11 additions & 0 deletions patches/compile/ProfoundNoticePanel.as.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- client/src/view/scene/raid/ProfoundNoticePanel.as
+++ client/src/view/scene/raid/ProfoundNoticePanel.as
@@ -260,7 +260,7 @@ package view.scene.raid
hide();
var num:int = ProfoundNotice.getNoticeNum();
if (num>0)
- {LobbyCtrl.instance.profoundNoticeClear(num);}
+ {RaidDataCtrl.instance.profoundNoticeClear(num);}
}
return ret;
}

0 comments on commit 107d3ac

Please sign in to comment.