blob: 2ec6fe12498845ced9987a173faaa800debf8732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using XUtliPoolLib;
namespace XMainClient
{
internal class Process_PtcM2C_GuildSchoolHallUpdatePoint
{
public static void Process(PtcM2C_GuildSchoolHallUpdatePoint roPtc)
{
XGuildGrowthDocument specificDocument = XDocuments.GetSpecificDocument<XGuildGrowthDocument>(XGuildGrowthDocument.uuID);
specificDocument.SetPoint(roPtc.Data.hallpoint, roPtc.Data.schoolpoint);
bool flag = roPtc.Data.roleid == XSingleton<XAttributeMgr>.singleton.XPlayerData.RoleID;
if (flag)
{
specificDocument.CheckShowItemGet(roPtc.Data.deltahallpoint, roPtc.Data.deltaschoolpoint);
}
}
}
}
|