mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 08:39:09 +00:00
[BUGFIX] Fixed a bug in RandomType
The id’s for the types were all the same
This commit is contained in:
@@ -6,9 +6,9 @@ package org.parabot.environment.randoms;
|
||||
public enum RandomType {
|
||||
|
||||
SCRIPT(0, "Script"),
|
||||
ON_SCRIPT_START(0, "On script start"),
|
||||
ON_SERVER_START(0, "On server start"),
|
||||
ON_SCRIPT_FINISH(0, "On script finish");
|
||||
ON_SCRIPT_START(1, "On script start"),
|
||||
ON_SERVER_START(2, "On server start"),
|
||||
ON_SCRIPT_FINISH(3, "On script finish");
|
||||
|
||||
private int id;
|
||||
private String name;
|
||||
|
||||
Reference in New Issue
Block a user