Removed "on" prefix from all remote methods

This commit is contained in:
Anuken
2020-07-03 18:48:31 -04:00
parent 7ff2e98420
commit 8576d535bd
22 changed files with 108 additions and 84 deletions

View File

@@ -17,7 +17,7 @@ public class Units{
private static boolean boolResult;
@Remote(called = Loc.server)
public static void onUnitDeath(Unit unit){
public static void unitDeath(Unit unit){
unit.killed();
}