Skip to content

+EA 23.320 Nyaightly Patch 1 - Plugin.BaseCore โ€‹

June 22, 2026

1 file modified.

Important Changes โ€‹

None.

MathEx โ€‹

public static class MathEx

cs
public static class MathEx
{
	public static int IntIDOverflowTempFix(int a) 
	{ 
		if (a >= 0) 
		{ 
			return a; 
		} 
		return -a; 
	} 
	public static bool IsSameSign(int a, int b)
	{
		if (a < 0 || b < 0)