mirror of
				https://bitbucket.org/Ioncannon/project-meteor-server.git
				synced 2025-05-20 08:26:59 -04:00 
			
		
		
		
	mass replaced all methods to pascal case
This commit is contained in:
		| @@ -56,7 +56,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects | ||||
|         public uint feet; | ||||
|         public uint belt; | ||||
|  | ||||
|         public static CharaInfo getFromNewCharRequest(String encoded) | ||||
|         public static CharaInfo GetFromNewCharRequest(String encoded) | ||||
|         { | ||||
|             byte[] data = Convert.FromBase64String(encoded.Replace('-', '+').Replace('_', '/')); | ||||
|  | ||||
| @@ -116,7 +116,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects | ||||
|             return info; | ||||
|         } | ||||
|  | ||||
|         public static String buildForCharaList(Character chara, Appearance appearance) | ||||
|         public static String BuildForCharaList(Character chara, Appearance appearance) | ||||
|         { | ||||
|             byte[] data; | ||||
|              | ||||
| @@ -146,7 +146,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects | ||||
|                     writer.Write(System.Text.Encoding.UTF8.GetBytes(chara.name + '\0')); | ||||
|                     writer.Write((UInt32)0x1c); | ||||
|                     writer.Write((UInt32)0x04); | ||||
|                     writer.Write((UInt32)getTribeModel(chara.tribe)); | ||||
|                     writer.Write((UInt32)GetTribeModel(chara.tribe)); | ||||
|                     writer.Write((UInt32)appearance.size); | ||||
|                     uint colorVal = appearance.skinColor | (uint)(appearance.hairColor << 10) | (uint)(appearance.eyeColor << 20); | ||||
|                     writer.Write((UInt32)colorVal); | ||||
| @@ -223,7 +223,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects | ||||
|             return Convert.ToBase64String(data).Replace('+', '-').Replace('/', '_'); | ||||
|         } | ||||
|  | ||||
|         public static String debug() | ||||
|         public static String Debug() | ||||
|         { | ||||
|             byte[] bytes = File.ReadAllBytes("./packets/charaappearance.bin"); | ||||
|  | ||||
| @@ -232,7 +232,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects | ||||
|             return Convert.ToBase64String(bytes).Replace('+', '-').Replace('/', '_'); | ||||
|         } | ||||
|  | ||||
|         public static UInt32 getTribeModel(byte tribe) | ||||
|         public static UInt32 GetTribeModel(byte tribe) | ||||
|         { | ||||
|             switch (tribe) | ||||
|             { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user